jasonrogena / php-excel-reader

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

PHP Deprecated Function #130

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Runing example.php
2.
3.

What is the expected output? What do you see instead?
PHP Errors:
1. Assigning the return value of new object by reference is deprecated 
$this->_ole =& new OLERead()
2. Deprecated: Function split() is deprecated

Please provide any additional information below.
1. Don't use reference for new objects, $this->_ole = new OLERead()
2. I used explode instead of split and it works ;)

Tamer Elnahal

Original issue reported on code.google.com by elna...@gmail.com on 17 Oct 2011 at 1:27

GoogleCodeExporter commented 9 years ago
also done those, it works.
it should be updated to work with php 5.3.x

Original comment by torabora...@gmail.com on 18 Oct 2011 at 10:28