// This script will call the function named foo showing case insensitivity.
function foo($my_string) {
      echo "$"."my_string = $my_string<br>";
}
foo("foo is foo");
Foo("Foo is foo");
FoO("FoO is foo");
FOO("FOO is foo");