Click to See Complete Forum and Search --> : Case sensitive


Mattrang
March 10th, 2006, 12:43 AM
Do you know why windows scripts don't have case-sensitive problems ????

bigBA
March 10th, 2006, 06:53 AM
could you specify a bit more what kind of answer you expect?

something about filenames?
if yes: well, the windows filesystem is just case-in-sensitive...

Mattrang
March 10th, 2006, 05:31 PM
I codein notepad, I can write
<?php
//functionnames can be uppercase-lowercase
>

but still the system recognizes and treats them indifferently. but in linux, and mac, that is not allowed, so why is it ?

PeejAvery
March 13th, 2006, 06:14 PM
but still the system recognizes and treats them indifferently. but in linux, and mac, that is not allowed, so why is it ?
I am a Mac user and never have this problem. Could you post one of your codes?

degsy
March 14th, 2006, 10:26 AM
It doesn't matter to the Windows System whether filenames are upper/lower case but it does matter to PHP, unless you convert the names using one of the string functions.