--TEST-- GH-14189 (PHP Interactive shell input state incorrectly handles quoted heredoc literals.) --EXTENSIONS-- readline --SKIPIF-- --FILE-- --EXPECT-- Interactive shell php > $test = <<<"EOF" <<< > foo <<< > bar <<< > baz <<< > EOF; php > echo $test; foo bar baz php > exit