summaryrefslogtreecommitdiff
path: root/ext/pcre
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2002-11-22 00:08:57 +0000
committerIlia Alshanetsky <iliaa@php.net>2002-11-22 00:08:57 +0000
commit2ca45412ed096f10df3f743425cc3ccf09ab34c0 (patch)
tree575d1f1ac761c97c2202ea43ba7a0d115cbcf467 /ext/pcre
parentc7dd366c1aa167b00daea5d210673e63ba61fdf6 (diff)
downloadphp-git-2ca45412ed096f10df3f743425cc3ccf09ab34c0.tar.gz
Added a test case for bug #20528.
Diffstat (limited to 'ext/pcre')
-rw-r--r--ext/pcre/tests/bug20528.phpt30
1 files changed, 30 insertions, 0 deletions
diff --git a/ext/pcre/tests/bug20528.phpt b/ext/pcre/tests/bug20528.phpt
new file mode 100644
index 0000000000..5dec08dbfc
--- /dev/null
+++ b/ext/pcre/tests/bug20528.phpt
@@ -0,0 +1,30 @@
+--TEST--
+preg_split() bug #20528
+--SKIPIF--
+<?php
+ if (!extension_loaded("pcre")) {
+ die("skip pcre extension is not available");
+ }
+?>
+--FILE--
+<?php
+ $data = '(#11/19/2002#)';
+ var_dump(preg_split('/\b/', $data));
+?>
+--EXPECT--
+array(7) {
+ [0]=>
+ string(2) "(#"
+ [1]=>
+ string(2) "11"
+ [2]=>
+ string(1) "/"
+ [3]=>
+ string(2) "19"
+ [4]=>
+ string(1) "/"
+ [5]=>
+ string(4) "2002"
+ [6]=>
+ string(2) "#)"
+}