ivan-berezhnov / php-excel-reader

Automatically exported from code.google.com/p/php-excel-reader
0 stars 0 forks source link

Warnings with php 5.30. #53

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1.Installing WAMP 2.0i with PHP 5.3.0
When i upload an 
I get an error deprecated by reference at line $this->_ole = &new OLERead();
If i downgrade to php 5.2.9 i don't get anymore errors but my application
is stucked.

Original issue reported on code.google.com by gregko...@gmail.com on 11 Nov 2009 at 2:38

GoogleCodeExporter commented 9 years ago
I'm by no means a PHP expert, but I think you can simply remove the & to make it

$this->_ole = new OLERead();

This works for me.

Original comment by bengt.se...@gmail.com on 16 Nov 2009 at 3:50

GoogleCodeExporter commented 9 years ago
Fixed in 2.22 at:
http://code.google.com/p/php-excel-reader2/

Original comment by sirsh...@gmail.com on 19 Jan 2010 at 12:58

GoogleCodeExporter commented 9 years ago
After doing that I get another error. Now this one:
$parts = split(";",$format);

Original comment by szur...@gmail.com on 30 Oct 2011 at 12:44

GoogleCodeExporter commented 9 years ago
Version 2 works. Thanks :)

Original comment by szur...@gmail.com on 30 Oct 2011 at 12:45