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/pcre_anchored.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/pcre_anchored.phpt')
-rw-r--r-- | ext/pcre/tests/pcre_anchored.phpt | 22 |
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) |