mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
03c7749dc8
As of PHP 7.3.0, the rules regarding the heredoc and nowdoc closing identifier have been relaxed. While formerly, the closing identifier was required to be placed at the beginning of a line and to be immediately followed by (a semicolon and) a line break, it may now be preceeded by whitespace, and may be followed by any non-word character. We adjust the recognition logic respectively.
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
--TEST--
|
|
Bug #77812 (Interactive mode does not support PHP 7.3-style heredoc)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('readline')) die('skip readline extension not available');
|
|
if (READLINE_LIB !== "libedit") die('skip libedit only');
|
|
if (!function_exists('proc_open')) die('skip proc_open() not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$php = getenv('TEST_PHP_EXECUTABLE');
|
|
$ini = getenv('TEST_PHP_EXTRA_ARGS');
|
|
$descriptorspec = [['pipe', 'r'], STDOUT, STDERR];
|
|
$proc = proc_open("$php $ini -a", $descriptorspec, $pipes);
|
|
var_dump($proc);
|
|
fwrite($pipes[0], "echo <<<FOO\n bar\n FOO;\n");
|
|
fwrite($pipes[0], "print(<<<FOO\nxx\nFOO);\n");
|
|
fwrite($pipes[0], "echo <<<FOO\n xxx\n FOO;\nFOO\n;\n");
|
|
fwrite($pipes[0], "echo <<<FOO\nFOOL\nFOO\n,1;\n");
|
|
fwrite($pipes[0], "echo <<<FOO\nFOO4\nFOO\n,2;\n");
|
|
fclose($pipes[0]);
|
|
proc_close($proc);
|
|
?>
|
|
--EXPECTF--
|
|
resource(%d) of type (process)
|
|
Interactive shell
|
|
|
|
bar
|
|
xx
|
|
xxx
|
|
|
|
Warning: Use of undefined constant FOO - assumed 'FOO' (this will throw an Error in a future version of PHP) in php shell code on line %d
|
|
FOOL1
|
|
FOO42
|