Skip to content

Latest commit

 

History

History
executable file
·
27 lines (21 loc) · 701 Bytes

File metadata and controls

executable file
·
27 lines (21 loc) · 701 Bytes

Variables

http://php.net/manual/en/language.variables.php

  1. Basics
  2. Predefined Variables
  3. Variable scope
  4. Variable variables
  5. Variables From External Sources
<?php

define('IA','I Can have a diferance case',true);
define('NOT_CLEAR','I have a strong case');

echo IA . PHP_EOL;
echo Ia . PHP_EOL;
echo NOT_CLEAR . PHP_EOL;
echo Not_clear . PHP_EOL; // EROR