mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
13 lines
212 B
PHP
13 lines
212 B
PHP
--TEST--
|
|
Bug #78804: Segmentation fault in Locale::filterMatches
|
|
--FILE--
|
|
<?php
|
|
|
|
if (Locale::filterMatches('en-US', 'und', true)) {
|
|
echo 'Matches';
|
|
} else {
|
|
echo 'Not matches';
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Not matches
|