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