You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--TEST--
|
|
GH-16630 (UAF in lexer with encoding translation and heredocs)
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--INI--
|
|
zend.multibyte=On
|
|
zend.script_encoding=ISO-8859-1
|
|
internal_encoding=EUC-JP
|
|
--FILE--
|
|
<?php
|
|
$data3 = <<<CODE
|
|
heredoc
|
|
text
|
|
CODE;
|
|
echo $data3;
|
|
?>
|
|
--EXPECT--
|
|
heredoc
|
|
text
|
|
|