I'm not sure what site this question should be on, please feel free to move as necessary. I am working on a project in PHP where I need to differentiate between the folders 'a' and 'A'. When I run the script:
<?php
mkdir('A', 0700);
mkdir('a', 0700);
?>
Only 'A' is created. Is this a mac problem, or is there something in a config file that I can change?