diff options
author | SVN Migration <svn@php.net> | 2006-10-15 21:09:28 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2006-10-15 21:09:28 +0000 |
commit | 88ec761548b66f58acc1a86cdd0fc164ca925476 (patch) | |
tree | d0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/pcre/tests/split.phpt | |
parent | 268984b4787e797db6054313fc9ba3b9e845306e (diff) | |
download | php-git-PECL_OPENSSL.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/pcre/tests/split.phpt')
-rw-r--r-- | ext/pcre/tests/split.phpt | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/ext/pcre/tests/split.phpt b/ext/pcre/tests/split.phpt deleted file mode 100644 index 8ec8e655cf..0000000000 --- a/ext/pcre/tests/split.phpt +++ /dev/null @@ -1,86 +0,0 @@ ---TEST-- -preg_split() ---FILE-- -<?php - -var_dump(preg_split()); -var_dump(preg_split('/*/', 'x')); - -var_dump(preg_split('/[\s, ]+/', 'x yy,zzz')); -var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', -1)); -var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 0)); -var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 1)); -var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 2)); - -var_dump(preg_split('/\d*/', 'ab2c3u')); -var_dump(preg_split('/\d*/', 'ab2c3u', -1, PREG_SPLIT_NO_EMPTY)); - -?> ---EXPECTF-- -Warning: preg_split() expects at least 2 parameters, 0 given in %ssplit.php on line 3 -bool(false) - -Warning: preg_split(): Compilation failed: nothing to repeat at offset 0 in %ssplit.php on line 4 -bool(false) -array(3) { - [0]=> - string(1) "x" - [1]=> - string(2) "yy" - [2]=> - string(3) "zzz" -} -array(3) { - [0]=> - string(1) "x" - [1]=> - string(2) "yy" - [2]=> - string(3) "zzz" -} -array(3) { - [0]=> - string(1) "x" - [1]=> - string(2) "yy" - [2]=> - string(3) "zzz" -} -array(1) { - [0]=> - string(8) "x yy,zzz" -} -array(2) { - [0]=> - string(1) "x" - [1]=> - string(6) "yy,zzz" -} -array(8) { - [0]=> - string(0) "" - [1]=> - string(1) "a" - [2]=> - string(1) "b" - [3]=> - string(0) "" - [4]=> - string(1) "c" - [5]=> - string(0) "" - [6]=> - string(1) "u" - [7]=> - string(0) "" -} -array(4) { - [0]=> - string(1) "a" - [1]=> - string(1) "b" - [2]=> - string(1) "c" - [3]=> - string(1) "u" -} |