mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
996eab8983
# CGI headers are stripped and the error ends up there with CGI..
14 lines
378 B
PHP
14 lines
378 B
PHP
--TEST--
|
|
Bug #33200 (magic_quotes_sybase = On makes 'e' modifier misbehave)
|
|
--INI--
|
|
magic_quotes_sybase=1
|
|
--FILE--
|
|
<?php
|
|
$str = 'some \'$sample\' text';
|
|
$str = preg_replace("/(some.*text)/e", "strtoupper('\\1')", $str);
|
|
echo $str . "\r\n";
|
|
?>
|
|
--EXPECT--
|
|
PHP Warning: Directive 'magic_quotes_sybase' is deprecated in PHP 5.3 and greater in Unknown on line 0
|
|
SOME '$SAMPLE' TEXT
|