Do you know why windows scripts don't have case-sensitive problems ????
Printable View
Do you know why windows scripts don't have case-sensitive problems ????
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...
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 ?
I am a Mac user and never have this problem. Could you post one of your codes?Quote:
Originally Posted by Mattrang
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.