Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created January 2, 2017 22:35
Show Gist options
  • Save ilhamarrouf/74db12beb4728e178f1a21f09e72070d to your computer and use it in GitHub Desktop.
Save ilhamarrouf/74db12beb4728e178f1a21f09e72070d to your computer and use it in GitHub Desktop.
PHP Function
<?php
function tampilkan($text, $angka)
{
$saya = "Saya " . $text . " " . $angka;
echo $saya;
}
function jarak()
{
echo "<br>";
}
tampilkan("Muhamad", 21);
jarak();
tampilkan("Muhamad Ilham", 0.3);
jarak();
tampilkan("Muhamad Ilham Arrouf", 97);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment