Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Case sensitivity in PHP

Case sensitivity in PHP is a bit messy. We recommend that you stick to the case sensitive rule in any language. Here we share some case sensitivity cases in PHP.1. Case sensitive1.1 Variable name is case sensitiveAll variables names are case sensitive, these include normal variables and superglobals such as $_GET,$_POST,$_REQUEST,$_COOKIE,$_SESSION,$_GLOBALS etc.<?php$abc = 'abcd';echo $abc; //Output 'abcd'echo $aBc; //No outputecho $ABC; //No output1.2 Constant name by default is case sensitive, usually use UPPER CASE for constant name<?phpdefine("ABC","Hello World");echo ABC; &nbs...

14,233 0       PHP SUMMARY CASE SENSITIVITY