Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Last active December 7, 2016 13:43
Show Gist options
  • Save ilhamarrouf/6a8d8549e2e775394ced6f075cb8bdc4 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/6a8d8549e2e775394ced6f075cb8bdc4 to your computer and use it in GitHub Desktop.
PHP Arithmetic Operators
<?php
$x = 10;
$y = 6;
echo $x + $y; // 10 + 6 = 16 adalah hasilnya
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment