mirror of
https://github.com/php/php-src.git
synced 2024-12-29 19:59:19 +08:00
22 lines
443 B
PHP
22 lines
443 B
PHP
--TEST--
|
|
Bug #24403 (scope doesn't properly propagate into internal functions)
|
|
--FILE--
|
|
<?php
|
|
class a
|
|
{
|
|
public $a = array();
|
|
|
|
function a()
|
|
{
|
|
$output = preg_replace(
|
|
'!\{\s*([a-z0-9_]+)\s*\}!sie',
|
|
"(in_array('\\1',\$this->a) ? '\'.\$p[\'\\1\'].\'' :
|
|
'\'.\$r[\'\\1\'].\'')",
|
|
"{a} b {c}");
|
|
}
|
|
}
|
|
new a();
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in %s on line %d
|