php-src/ext/ereg/tests/009.phpt
2008-11-18 17:55:07 +00:00

19 lines
274 B
PHP

--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