PHP can sometimes be confusing when it shouldn’t be. One area of confusion is the issue with “duplicate” built-in functions. I’m always inclined to think that language makers probably had a good reason to make duplicates and most of the time that is a good assumption.
But is it always true? Let’s see an example of echo end print functions. Technically speaking neither echo nor print are functions but language constructs so you don’t need to use parentheses with its arguments.
<?php
echo "get ready: ", 1, 2, 3, " go"; // outputs get ready: 123 go
print "get ready: 123 go"; // print can't handle multiple arguments like echo
?>