1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/ext/pcre/tests/bug76512.phpt
2018-06-22 00:01:51 +02:00

11 lines
158 B
PHP

--TEST--
Bug #76512 (\w no longer includes unicode characters)
--FILE--
<?php
var_dump(preg_match('/\w/u', 'ä'));
?>
===DONE===
--EXPECT--
int(1)
===DONE===