php-src/ext/pcre/tests/locales.phpt

26 lines
670 B
Plaintext
Raw Normal View History

--TEST--
Localized match
--SKIPIF--
2006-06-14 17:37:53 +00:00
<?php if (!function_exists('setlocale')) die('skip: setlocale() not available'); ?>
<?php if (!@setlocale(LC_ALL, 'pt_PT', 'pt', 'pt_PT.ISO8859-1', 'portuguese')) die('skip pt locale not available');
--FILE--
<?php
// this tests if the cache is working correctly, as the char tables
// must be rebuilt after the locale change
setlocale(LC_ALL, 'C', 'POSIX');
var_dump(preg_match('/^\w{6}$/', 'a<><61><EFBFBD><EFBFBD><EFBFBD>'));
2006-06-26 23:42:59 +00:00
setlocale(LC_ALL, 'pt_PT', 'pt', 'pt_PT.ISO8859-1', 'portuguese');
var_dump(preg_match('/^\w{6}$/', 'a<><61><EFBFBD><EFBFBD><EFBFBD>'));
setlocale(LC_ALL, 'C', 'POSIX');
var_dump(preg_match('/^\w{6}$/', 'a<><61><EFBFBD><EFBFBD><EFBFBD>'));
?>
--EXPECT--
int(0)
int(1)
int(0)