Last active
December 7, 2016 03:36
-
-
Save ilhamarrouf/5f4501a4cf507050de7d12daa5235cec to your computer and use it in GitHub Desktop.
Expression PHP
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 | |
| // Semua Kode di bawah ini adalah Ekspresi PHP | |
| $nilai1 = "87"; | |
| $nilai2 = "92"; | |
| $nilai3 = "89"; | |
| echo $nilai1 + $nilai2 * $nillai3; | |
| // Contoh diatas merupakan suatu bentuk ekspresi yang menghasilkan nilai 87 | |
| // Angka 87, 92 dan 89 disebut sebagai operand | |
| // Tanda + dan * disebut sebagai operator. | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment