Open GoogleCodeExporter opened 8 years ago
Fixed in 2.22
Download at: http://code.google.com/p/php-excel-reader2/
Original comment by sirsh...@gmail.com
on 19 Jan 2010 at 1:04
[deleted comment]
split is always depreacted width php-excel-reader2.
Change to line 79 :
return(array_comb($k,split(":",gmdate('s:i:G:j:w:n:Y:z:l:F:U',is_null($ts)?time(
):$ts))));
with :
return(array_comb($k,explode(":",gmdate('s:i:G:j:w:n:Y:z:l:F:U',is_null($ts)?tim
e():$ts))));
and line 844 :
$parts = split(";",$format);
with :
$parts = explode(";",$format);
Best regards
Arnaud Méhat
Original comment by ame...@gmail.com
on 12 Jun 2013 at 9:24
Original issue reported on code.google.com by
wiley14
on 12 Oct 2009 at 2:38