Apa yang didefinisikan DI dalam PHP

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