jasonrogena / jasonrogena/php-excel-reader
split() is deprecated in PHP 5.3
- Dominant language
- PHP
- Stars
- 1
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```
On line 79 and 844, the code makes references to the split() function,
which is deprecated in PHP 5.3.0 and will be removed in PHP 6.0. The code
should be modified to use explode() (which is reverse compatible with older
versions of PHP).
```
Original issue reported on code.google.com by `wiley14` on 12 Oct 2009 at 2:38
Contributor guide
No contributing guide indexed for this repository
Research direction
Search the repository for the references to split() at lines 79 and 844, then inspect their delimiters and surrounding callers. Replace those deprecated calls with explode() while preserving behavior, and run the project's available tests or a basic PHP syntax check to confirm the reader still works.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- php
- Domain
- backend
- Issue type
- Refactor
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 65/100