Perhaps just like that:
php> $test = " ... hello hi how are you this is phpSH ... hello there its test line ... " <the_empty_result> php> php> echo $test hello hi how are you this is phpSH hello there its test line php> php> =$test "\nhello hi how are you this is phpSH\nhello there its test line\n"
or
php> $test = "hello hi how are you this is phpSH ... hello there its test line" <the_empty_result> php> php> echo $test hello hi how are you this is phpSH hello there its test line php> php> =$test "hello hi how are you this is phpSH\nhello there its test line"
Of course, press Enter to create the aforementioned multi-line input.
source share