diff options
Diffstat (limited to 'ext/ereg/tests/009.phpt')
-rw-r--r-- | ext/ereg/tests/009.phpt | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/ereg/tests/009.phpt b/ext/ereg/tests/009.phpt deleted file mode 100644 index 4996ef4c97..0000000000 --- a/ext/ereg/tests/009.phpt +++ /dev/null @@ -1,19 +0,0 @@ ---TEST-- -Test split() ---POST-- ---GET-- ---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 |