123456789101112131415161718 |
- --TEST--
- Test split()
- --FILE--
- <?php
- $a=split("[[:space:]]","this is a
- test");
- echo count($a) . "\n";
- for ($i = 0; $i < count($a); $i++) {
- echo $a[$i] . "\n";
- }
- ?>
- --EXPECTF--
- Deprecated: Function split() is deprecated in %s on line %d
- 4
- this
- is
- a
- test
|