summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/009.phpt
blob: 513f31a83e7839b7de35b978300eabb62fdbf8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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