summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/009.phpt
blob: dba531e9019012b9202c971fbd6236299559504f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Test split()
--POST--
--GET--
--FILE--
<?php
	$a=split("[[:space:]]","this is	a\ntest");
	echo count($a) . "\n";
	for ($i = 0; $i < count($a); $i++) {
          echo $a[$i] . "\n";
        }
?>
--EXPECT--
4
this
is
a
test