Skip to content

Instantly share code, notes, and snippets.

@sdboyer
Created June 9, 2012 13:57
Show Gist options
  • Save sdboyer/2901057 to your computer and use it in GitHub Desktop.
Save sdboyer/2901057 to your computer and use it in GitHub Desktop.
quicker search of namespace array in universal class loader
<?php
foreach ($this->namespaces as $ns => $dirs) {
if (0 !== strpos($namespace, $ns)) {
continue;
}
foreach ($dirs as $dir) {
$file = $dir.DIRECTORY_SEPARATOR.$normalizedClass;
if (is_file($file)) {
return $file;
}
}
}
// vs.
if (isset($this->namespaces[$namespace])) {
foreach ($this->namespaces[$namespace] as $dir) {
$file = $dir.DIRECTORY_SEPARATOR.$normalizedClass;
if (is_file($file)) {
return $file;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment