What are the implications of using echo versus print in PHP scripts?

Using `echo` and `print` in PHP scripts both serve the purpose of outputting data to the screen. However, `echo` is slightly faster and does not return a value, while `print` is slower and returns a value of 1. In most cases, the performance difference is negligible, so it ultimately comes down to personal preference.

// Using echo to output a string
echo "Hello, World!";