a
This commit is contained in:
parent
8ecb4201e6
commit
dc91e1bbc5
0
PHPExcel/PHPExcel/Chart/Axis.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Chart/Axis.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Chart/GridLines.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Chart/GridLines.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Chart/Properties.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Chart/Properties.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Helper/HTML.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Helper/HTML.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF5.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF5.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF8.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF8.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BuiltIn.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Color/BuiltIn.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/ErrorCode.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/ErrorCode.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Style/Border.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Style/Border.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Style/FillPattern.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Reader/Excel5/Style/FillPattern.php
Normal file → Executable file
|
|
@ -523,8 +523,8 @@ class PHPExcel_Shared_String
|
|||
if (strlen($str) < 2) {
|
||||
return $str;
|
||||
}
|
||||
$c0 = ord($str{0});
|
||||
$c1 = ord($str{1});
|
||||
$c0 = ord($str[0]);
|
||||
$c1 = ord($str[1]);
|
||||
if ($c0 == 0xfe && $c1 == 0xff) {
|
||||
$str = substr($str, 2);
|
||||
} elseif ($c0 == 0xff && $c1 == 0xfe) {
|
||||
|
|
@ -535,11 +535,11 @@ class PHPExcel_Shared_String
|
|||
$newstr = '';
|
||||
for ($i=0; $i<$len; $i+=2) {
|
||||
if ($bom_be) {
|
||||
$val = ord($str{$i}) << 4;
|
||||
$val += ord($str{$i+1});
|
||||
$val = ord($str[$i]) << 4;
|
||||
$val += ord($str[$i+1]);
|
||||
} else {
|
||||
$val = ord($str{$i+1}) << 4;
|
||||
$val += ord($str{$i});
|
||||
$val = ord($str[$i+1]) << 4;
|
||||
$val += ord($str[$i]);
|
||||
}
|
||||
$newstr .= ($val == 0x228) ? "\n" : chr($val);
|
||||
}
|
||||
|
|
|
|||
0
PHPExcel/PHPExcel/Worksheet/Column.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/Column.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/ColumnCellIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/ColumnCellIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/ColumnIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/ColumnIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/Dimension.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/Dimension.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/RowCellIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Worksheet/RowCellIterator.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Cell/Comment.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Cell/Comment.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Content.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Content.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Meta.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Meta.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/MetaInf.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/MetaInf.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Mimetype.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Mimetype.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Settings.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Settings.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Styles.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Styles.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Thumbnails.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/Thumbnails.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/WriterPart.php
Normal file → Executable file
0
PHPExcel/PHPExcel/Writer/OpenDocument/WriterPart.php
Normal file → Executable file
Loading…
Reference in New Issue
Block a user