mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
10 lines
197 B
PHP
10 lines
197 B
PHP
--TEST--
|
|
Fixed bug #71537 (PCRE segfault from Opcache)
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(preg_replace(array("/Monkey/"), array(2016), "Happy Year of Monkey"));
|
|
?>
|
|
--EXPECT--
|
|
string(18) "Happy Year of 2016"
|