Created
December 7, 2016 03:19
-
-
Save ilhamarrouf/9f191e45befba3c6c35fbd93be647b6b to your computer and use it in GitHub Desktop.
Constant 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 | |
| // cara 1 menggunakan keyword const | |
| const nama = "Belajar Konstanta"; | |
| echo nama; // kata yang akan muncul adalah Belajar Konstanta | |
| //cara 2 menggunakan keyword define | |
| define ("nama" , "Belajar Konstanta"); | |
| echo nama; // kata yang akan muncul adalah Belajar Konstanta | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment