File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
pcre /
tests /
bug47229.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:47:59 2012 UTC (12 years, 8 months ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
Bug #47229 (preg_quote() doesn't escape -)
--FILE--
<?php
var_dump(preg_quote('-oh really?'));
// make sure there's no regression in matching
preg_match('/[a\-c]+/', 'a---b', $m);
var_dump($m);
preg_match('/[a\-c]+/', 'a\-', $m);
var_dump($m);
preg_match("/a\-{2,}/", 'a----a', $m);
var_dump($m);
preg_match("/a\-{1,}/", 'a\----a', $m);
var_dump($m);
?>
--EXPECTF--
%string|unicode%(13) "\-oh really\?"
array(1) {
[0]=>
%string|unicode%(4) "a---"
}
array(1) {
[0]=>
%string|unicode%(1) "a"
}
array(1) {
[0]=>
%string|unicode%(5) "a----"
}
array(0) {
}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>