Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created January 2, 2017 23:09
Show Gist options
  • Save ilhamarrouf/290100109cbce6a21caa75c388d0779e to your computer and use it in GitHub Desktop.
Save ilhamarrouf/290100109cbce6a21caa75c388d0779e to your computer and use it in GitHub Desktop.
PHP Function
<?php
$a = 2;
$b = 16;
// Cara 1
function cara1() {
global $a, $b;
$c = $a + $b;
return $c;
}
echo cara1();
echo "<br>";
// Cara 2
function cara2() {
$c = $GLOBALS['a'] + $GLOBALS['b'];
return $c;
}
echo cara2();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment