Posted by Geoff Berrow on 08/05/06 23:17
Message-ID: <eb29q2$htf$1$8300dec7@news.demon.co.uk> from Tony Marston
contained the following:
> If I encounter readfile(), readFile(), ReadFile() and
>READFILE() it causes far more problems if they are totally different
>functions than it does by being the same function but with different case.
Oh is that all that's bothering you. Try this then.
<?php
function hello($name){
print "Hello $name<br>";
}
HeLLo("Geoff");
Hello("Tony");
HELLO("Jerry");
?>
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
[Back to original message]
|