Skip to content

Instantly share code, notes, and snippets.

@code-poel
Created October 23, 2014 18:40
Show Gist options
  • Save code-poel/e4353c89905dc181b745 to your computer and use it in GitHub Desktop.
Save code-poel/e4353c89905dc181b745 to your computer and use it in GitHub Desktop.
<?php
$suffixes = array('');
// ...
foreach ($suffixes as $suffix) {
foreach ($dirs as $dir) {
if (is_file($file = $dir.DIRECTORY_SEPARATOR.$name.$suffix) && (defined('PHP_WINDOWS_VERSION_BUILD') || is_executable($file))) {
return $file;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment