Skip to content

Instantly share code, notes, and snippets.

@rasoulvatanparast
Last active July 2, 2019 16:01
Show Gist options
  • Save rasoulvatanparast/0426d5c085b2238fa0e4c4c40ae02db8 to your computer and use it in GitHub Desktop.
Save rasoulvatanparast/0426d5c085b2238fa0e4c4c40ae02db8 to your computer and use it in GitHub Desktop.
<?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