Doubble echoes and prints are bad in PHP

Echoing an echo in PHP can create confusing output:

<?= print_r('hello'); ?>
will output
hello1
since you will be printing the return value (boolean true) of a printing operation aswell as printing the actual content you wanted.