simplexls icon indicating copy to clipboard operation
simplexls copied to clipboard

Parse and retrieve data from old format Excel XLS files. MS Excel 97 workbooks PHP reader.

Results 6 simplexls issues
Sort by recently updated
recently updated
newest added

Cell B1 of first sheet : [test_pv_95.xls](https://github.com/shuchkin/simplexls/files/7202828/test_pv_95.xls) I get : &�?���?????? Instead of : &é?¥®™?????? (Excel 2003 to 95 lost arabic and hebrew characters, I shoud have had &é₤¥®™≠بةائӨ) I...

public function encode($txt){ $arr=array('EUC-CN' => 'GB2312','CP936' => 'GBK','SJIS-mac'=>'MacJapanese','SJIS-Mobile#DOCOMO'=>'SJIS-DOCOMO','SJIS-Mobile#KDDI'=>'SJIS-KDDI','SJIS-Mobile#SOFTBANK'=>'SJIS-SOFTBANK','UTF-8-Mobile#DOCOMO'=>'UTF-8-DOCOMO','UTF-8-Mobile#KDDI-B'=>'UTF-8-KDDI','UTF-8-Mobile#SOFTBANK'=>'UTF-8-SOFTBANK','ISO-2022-JP-MOBILE#KDDI'=>'ISO-2022-JP-KDDI'); $encode = mb_detect_encoding($txt, ['ASCII', 'UTF-8', 'GB2312', 'GBK', 'BIG5']); if(array_key_exists($encode, $arr)) $encode = $arr[$encode]; return mb_convert_encoding($txt, 'UTF-8', $encode); } //sheetnames and cells //sheetnames:...

I was working an XLS file that has cell formulas which return as zeros when I use $xls->rows(). It would be helpful to have a slimmed down version of SimpleXLSX's...

Hey! I'm using your library to import data from XLS document and it seems that the setDateTimeFormat() method have no effect on the output of the row() method. The problem...

I want to just take the specific cell like $rowcount = count($excel -> rows(1)); for( $i=1; $i

I’ve noticed that when using named ranges in formulas, the simplexls does not recognise them. e.g. if this is in the spreadsheet =IF(named_range_1="No","Some Value No","Some Value Yes") It will just...