Created
October 21, 2016 10:01
-
-
Save yvan-sraka/1afa8f211a4460a89f438db7cd2a88e3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
$name = "Bob"; | |
echo $name; | |
// VS // | |
echo "Bob"; | |
// ---------------------------- // | |
function what_is_my_name() { | |
return "Bob"; | |
} // => STRING: "Bob" | |
echo what_is_my_name(); // display "Bob" | |
$result = what_is_my_name(); | |
echo $result; // display "Bob" | |
// VS // | |
function what_is_my_name() { | |
echo "Bob"; | |
} // => NULL | |
what_is_my_name(); // display "Bob" | |
$result = what_is_my_name(); | |
echo $result; // display NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment