summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/009.phpt
blob: 528606f3c897d5f33bb70b3919a1093c72459fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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";
        }
?>
--EXPECT--
4
this
is
a
test