--TEST-- Bug #77812 (Interactive mode does not support PHP 7.3-style heredoc) --SKIPIF-- --FILE-- --EXPECTF-- resource(%d) of type (process) Interactive shell php > echo << bar <<< > FOO; bar php > print(<< xx <<< > FOO); xx php > echo << xxx <<< > FOO; xxx php > FOO php > ; 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 php > echo << FOOL <<< > FOO php > ,1; FOOL1 php > echo << FOO4 <<< > FOO php > ,2; FOO42 php >