Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created December 7, 2016 03:19
Show Gist options
  • Save ilhamarrouf/9f191e45befba3c6c35fbd93be647b6b to your computer and use it in GitHub Desktop.
Save ilhamarrouf/9f191e45befba3c6c35fbd93be647b6b to your computer and use it in GitHub Desktop.
Constant PHP
<?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