Skip to content

Instantly share code, notes, and snippets.

@koriym
Created March 10, 2021 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koriym/3c328e188d4f52e61bafdb3197147bbd to your computer and use it in GitHub Desktop.
Save koriym/3c328e188d4f52e61bafdb3197147bbd to your computer and use it in GitHub Desktop.
Loader to find classes that have not been preloaded
<?php
// preloadされていないクラスを見つけるローダー
$notPreloaded = new ArrayObject();
spl_autoload_register(function (string $class) use ($notPreloaded) {
$notPreloaded[] = $class;
},
true,
true
);
error_log(print_r($notPreloaded, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment