Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created January 2, 2017 11:40
Show Gist options
  • Save ilhamarrouf/e2bdd604059c09b14607e1b17f3b3a2f to your computer and use it in GitHub Desktop.
Save ilhamarrouf/e2bdd604059c09b14607e1b17f3b3a2f to your computer and use it in GitHub Desktop.
PHP Function
<?php
// Penulisan fungsi
function namadepan()
{
echo "Muhamad";
}
function namatengah()
{
echo "Ilham";
}
function namaakhir()
{
echo "Arrouf";
}
function spasi()
{
echo "&nbsp;";
}
// Fungsi didalam fungsi
function bersarang()
{
namadepan() . spasi() . namatengah() . spasi() . namaakhir();
}
// Penggunaan fungsi 'namafungsi();'
bersarang();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment