apa yang didefinisikan dalam php

//The defined() function checks wheather a consant exists
<?php
  define("Greet","Hello World");
  echo defined("Greet");
  ?>
Filthy Frog