summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/001.phpt
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-03-14 05:42:27 +0000
committer <>2013-04-03 16:25:08 +0000
commitc4dd7a1a684490673e25aaf4fabec5df138854c4 (patch)
tree4d57c44caae4480efff02b90b9be86f44bf25409 /ext/pcre/tests/001.phpt
downloadphp2-master.tar.gz
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'ext/pcre/tests/001.phpt')
-rw-r--r--ext/pcre/tests/001.phpt87
1 files changed, 87 insertions, 0 deletions
diff --git a/ext/pcre/tests/001.phpt b/ext/pcre/tests/001.phpt
new file mode 100644
index 0000000..313f7fd
--- /dev/null
+++ b/ext/pcre/tests/001.phpt
@@ -0,0 +1,87 @@
+--TEST--
+abusing preg_match()
+--FILE--
+<?php
+
+foreach (array('2006-05-13', '06-12-12', 'data: "12-Aug-87"') as $s) {
+ var_dump(preg_match('~
+ (?P<date>
+ (?P<year>(\d{2})?\d\d) -
+ (?P<month>(?:\d\d|[a-zA-Z]{2,3})) -
+ (?P<day>[0-3]?\d))
+ ~x', $s, $m));
+
+ var_dump($m);
+}
+
+?>
+--EXPECT--
+int(1)
+array(10) {
+ [0]=>
+ string(10) "2006-05-13"
+ ["date"]=>
+ string(10) "2006-05-13"
+ [1]=>
+ string(10) "2006-05-13"
+ ["year"]=>
+ string(4) "2006"
+ [2]=>
+ string(4) "2006"
+ [3]=>
+ string(2) "20"
+ ["month"]=>
+ string(2) "05"
+ [4]=>
+ string(2) "05"
+ ["day"]=>
+ string(2) "13"
+ [5]=>
+ string(2) "13"
+}
+int(1)
+array(10) {
+ [0]=>
+ string(8) "06-12-12"
+ ["date"]=>
+ string(8) "06-12-12"
+ [1]=>
+ string(8) "06-12-12"
+ ["year"]=>
+ string(2) "06"
+ [2]=>
+ string(2) "06"
+ [3]=>
+ string(0) ""
+ ["month"]=>
+ string(2) "12"
+ [4]=>
+ string(2) "12"
+ ["day"]=>
+ string(2) "12"
+ [5]=>
+ string(2) "12"
+}
+int(1)
+array(10) {
+ [0]=>
+ string(8) "12-Aug-8"
+ ["date"]=>
+ string(8) "12-Aug-8"
+ [1]=>
+ string(8) "12-Aug-8"
+ ["year"]=>
+ string(2) "12"
+ [2]=>
+ string(2) "12"
+ [3]=>
+ string(0) ""
+ ["month"]=>
+ string(3) "Aug"
+ [4]=>
+ string(3) "Aug"
+ ["day"]=>
+ string(1) "8"
+ [5]=>
+ string(1) "8"
+}