PHP display output in terminal on a new line by default

one text

Is there a way how to display PHP output in terminal on a new line by default? without typing PHP_EOL after each echo stmt? or ideally "customize" output to forexample be separated by empty line on top and bottom by default? Something like:

root@72872b2841a3:/var/www/html# php index.php

/var/www/html/index.php:64:
string(34) "I am not feeling oppressed anymore"

root@72872b2841a3:/var/www/html# 

Source