Posted by Tony Marston on 08/06/06 09:39
"Geoff Berrow" <blthecat@ckdog.co.uk> wrote in message
news:3e9ad29lilqbcd9in9lj26l3kj93jqlt25@4ax.com...
> 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");
>
> ?>
>
In PHP all function names are case insensitive. That is what I am *FOR*, not
*AGAINST*. I want this behaviour in PHP to remain, and not to be fucked up
just to be "consistent" with other languages.
--
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
[Back to original message]
|