Last active
July 2, 2019 16:01
-
-
Save rasoulvatanparast/0426d5c085b2238fa0e4c4c40ae02db8 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 | |
function info($name = "no name", $family = "no family name", $age = "0"){ | |
echo "hi my name is: $name $family and I'm $age"; | |
} | |
info("Rasoul", "Vatanparast", 22); | |
echo "<br />"; | |
info(); | |
/* | |
output: | |
hi my name is: Rasoul Vatanparast and I'm 22 | |
hi my name is: no name no family name and I'm 0 | |
*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment