-
-
Save Emmathem/6617b6847bee62b3e2a00bbd06a602a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DIFFERENCE BETWEEN ECHO AND PRINT | |
Both ECHO and PRINT in PHP are used to output result | |
ECHO does not return a value, and can take many parameters(depending on PHP -v); | |
PRINT return value of 1 that why it's suitable to use while outputing an expression, it can only accept one argument |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
solution 2