summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/pcre_anchored.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/pcre_anchored.phpt')
-rw-r--r--ext/pcre/tests/pcre_anchored.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/pcre/tests/pcre_anchored.phpt b/ext/pcre/tests/pcre_anchored.phpt
deleted file mode 100644
index caa96437e1..0000000000
--- a/ext/pcre/tests/pcre_anchored.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-A (PCRE_ANCHORED) modififer
---FILE--
-<?php
-
-var_dump(preg_match('/\PN+/', '123abc', $m));
-var_dump($m);
-
-var_dump(preg_match('/\P{N}+/A', '123abc'));
-var_dump(preg_match('/^\P{N}+/', '123abc'));
-var_dump(preg_match('/^\P{N}+/A', '123abc'));
-
-?>
---EXPECT--
-int(1)
-array(1) {
- [0]=>
- string(3) "abc"
-}
-int(0)
-int(0)
-int(0)