Skip to main content

Case-inconsistency of PHP file paths on Mac / MAMP?



I'm developing a PHP program on MAMP, and just realized the following screwy behavior:







echo "<br/>PATH = ".dirname(__FILE__);

include 'include.php';







include.php:







<?php

echo "<br/>PATH = ".dirname(__FILE__);

?>







Result:







PATH = /users/me/stuff/mamp_server/my_site (All lower case)





PATH = /Users/me/Stuff/mamp_server/my_site (Mixed case)







What is causing this inconsistent behavior, and how can I protect against it? (Note that I can't just convert everything to lowercase, because the application is destined for a Linux server, where file paths are case sensitive. )





Update:





This problem exists for __FILE__ and __DIR__ .





It looks like this might be a real problem with no work around... going to file a bug report unless I hear otherwise.





Bug report:





https://bugs.php.net/bug.php?id=60017





Update:





And another note: If you're doing an absolute path include(...) on Mac, it requires the mixed case version.


Comments

  1. I have had similar problems developing PHP on MAC OS X. You can format with a case sensitive filesystem but if you are using Adobe's design software you might run into trouble: http://forums.adobe.com/thread/392791

    The real issue is that the file system that is said to be case insensitive is in actual fact partially case insensitive. You can create two files with names 'Filename' and 'filename' in the same directory but 'Filename' and 'filename' may point to both files: http://systemsboy.com/2005/12/mac-osx-command-line-is-partially-case-insensitive.html

    ReplyDelete
  2. What about creating an include file in the same directory as your app.

    <?php return __DIR__; ?>


    Use it like so:

    $trueDIR = include('get_true_dir.php');


    From what you posted above, this should work. Yes, it's a bit of a hacky workaround, but it is a workaround, and should work even on systems not suffering from this issue.

    ReplyDelete
  3. This is the code I use to get the correct casing of a given filename:

    function get_cased_filename($filename)
    {
    $globbable = addcslashes($filename, '?*[]\\');
    $globbable = preg_replace_callback('/[a-zA-Z]/', 'get_bracket_upper_lower', $globbable);
    $files = glob($globbable);
    if (count($files)==1)
    {
    return $files[0];
    }
    return false;
    }

    function get_bracket_upper_lower($m)
    {
    return '['.strtolower($m[0]).strtoupper($m[0]).']';
    }


    The glob should only match one file, but if used on a case sensitive file system then it could match more - required behaviour is up to you - eg return the [0] anyway or throw a E_NOTICE or something.

    You might find it helpful: $mydir = get_cased_filename(dirname(__FILE__)); Works for my CLI PHP 5.3.6 on Mac 10.6.8.

    I use it to deal with coworkers who don't notice things like "Filename" and "filename" being different. (These people also wonder why filenames that contain ">" or "?" don't work when copying from Mac to Windows server, but I digress...)

    ReplyDelete
  4. To check for the existance of a file with the same name, but disregarding case (Credit to User Comment on PHP.net > file_exists fn):

    <?php

    /**
    * Alternative to file_exists() that will also return true if a file exists
    * with the same name in a different case.
    * eg. say there exists a file /path/product.class.php
    * file_exists('/path/Product.class.php')
    * => false
    * similar_file_exists('/path/Product.class.php')
    * => true
    */
    function similar_file_exists($filename) {
    if (file_exists($filename)) {
    return true;
    }
    $dir = dirname($filename);
    $files = glob($dir . '/*');
    $lcaseFilename = strtolower($filename);
    foreach($files as $file) {
    if (strtolower($file) == $lcaseFilename) {
    return true;
    }
    }
    return false;
    }

    ?>

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 3 Final Exam => latest version

1 . Which security protocol or measure would provide the greatest protection for a wireless LAN? WPA2 cloaking SSIDs shared WEP key MAC address filtering   2 . Refer to the exhibit. All trunk links are operational and all VLANs are allowed on all trunk links. An ARP request is sent by computer 5. Which device or devices will receive this message? only computer 4 computer 3 and RTR-A computer 4 and RTR-A computer 1, computer 2, computer 4, and RTR-A computer 1, computer 2, computer 3, computer 4, and RTR-A all of the computers and the router   3 . Refer to the exhibit. Hosts A and B, connected to hub HB1, attempt to transmit a frame at the same time but a collision occurs. Which hosts will receive the collision jamming signal? only hosts A and B only hosts A, B, and C only hosts A, B, C, and D only hosts A, B, C, and E   4 . Refer to the exhibit. Router RA receives a packet with a source address of 192.168.1.65 and a destination address of 192.168.1.161...