Keywords and function names are case insensitive : Php Script « Language Basics « PHP
- PHP
- Language Basics
- Php Script
Keywords and function names are case insensitive
<?
// These four lines all do the same thing
print number_format(285266237);
PRINT Number_Format(285266237);
Print number_format(285266237);
pRiNt NUMBER_FORMAT(285266237);
?>
Related examples in the same category