Created
July 19, 2013 05:17
-
-
Save jrsinclair/6036521 to your computer and use it in GitHub Desktop.
PHP Full-depth Case Insensitive file_exists() Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Single level, Case Insensitive File Exists. | |
* | |
* Only searches one level deep. Based on | |
* https://gist.github.com/hubgit/456028 | |
* | |
* @param string $file The file path to search for. | |
* | |
* @return string The path if found, FALSE otherwise. | |
*/ | |
function fileExistsSingle($file) | |
{ | |
if (file_exists($file) === TRUE) { | |
return $file; | |
} | |
$lowerfile = strtolower($file); | |
foreach (glob(dirname($file).'/*') as $file) { | |
if (strtolower($file) === $lowerfile) { | |
return $file; | |
} | |
} | |
return FALSE; | |
}//end fileExistsSingle() | |
/** | |
* Case Insensitive File Search. | |
* | |
* @param string $filePath The full path of the file to search for. | |
* | |
* @return string File path if valid, FALSE otherwise. | |
*/ | |
function fileExistsCI($filePath) | |
{ | |
if (file_exists($filePath) === TRUE) { | |
return $filePath; | |
} | |
// Split directory up into parts. | |
$dirs = explode('/', $filePath); | |
$len = count($dirs); | |
$dir = '/'; | |
foreach ($dirs as $i => $part) { | |
$dirpath = fileExistsSingle($dir.$part); | |
if ($dirpath === FALSE) { | |
return FALSE; | |
} | |
$dir = $dirpath; | |
$dir .= (($i > 0) && ($i < $len - 1)) ? '/' : ''; | |
} | |
return $dir; | |
}//end fileExistsCI() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment