Last active
December 7, 2016 13:54
-
-
Save ilhamarrouf/173a196e83a50158d24df5f2c5154a3d to your computer and use it in GitHub Desktop.
PHP Arithmetic Operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $x = 10; | |
| $y = 6; | |
| echo $x * $y; // 10 * 6 = 60 adalah hasilnya | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment