PHP functions are not case sensitive , but if I want them to be is there any way to do it ??
function FIRe()
{
return "FIR Emergency";
}
function FIRE()
{
return "FIRE OUT THERE";
}
FIRe();
Note: Again saying, I know they are case-insensitive, is there any way to make them case sensitive?