$variable
, $Variable
and $VARIABLE
are completely different// lowercase
$variable = "Value 1";
// PascalCase
$Variable = "Value 2";
// UPPERCASE
$VARIABLE = "Value 3";
echo $variable . "\n";
echo $Variable . "\n";
echo $VARIABLE . "\n";
Function names are case-insensitive
function printGreeting() {
print "Prints: Hello world!\n";
}
printGreeting();
Calling the function with uppercase will still work