I was told that in C++, it's best to use minimal output (cout) statements....
Is it the same way in php? For example, does it matter which of the following ways I use?
print ("1st sentence. ");
print ("2nd sentence. ");
print ("3rd sentence. ");
print ("4th sentence.");
OR
print ("1st sentence. 2nd sentence. 3rd sentence. 4th sentence.");
Now, obviously, it's easier to use the second example, but when I get into complex and long print statements, I like to break things up for readability and such. Does it make that much of a difference to use the print statement four times instead of one?