mirror of
https://github.com/php/php-src.git
synced 2026-04-16 20:41:18 +02:00
11 lines
158 B
PHP
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===
|