Skip to content

Instantly share code, notes, and snippets.

@joe0402
Last active October 19, 2018 12:59
Show Gist options
  • Save joe0402/21d3647ed16a42948bfb1750f09438fe to your computer and use it in GitHub Desktop.
Save joe0402/21d3647ed16a42948bfb1750f09438fe to your computer and use it in GitHub Desktop.
<?php
function Hello($str) {
echo "$str World";
}
for($i=0; $i<10; $i++) {
Hello("Hello");
}
echo "Ende"
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment