Class Autoloader

Phalcon\Loader allows you to load project classes automatically, based on some predefined rules. Since this component is written in C, it provides the lowest overhead in reading and interpreting external PHP files.

The behavior of this component is based on the PHP’s capability of autoloading classes. If a class that does not yet exist is used in any part of the code, a special handler will try to load it. Phalcon\Loader serves as the special handler for this operation. By loading classes on a need-to-load basis, the overall performance is increased since the only file reads that occur are for the files needed. This technique is called lazy initialization.

With this component you can load files from other projects or vendors, this autoloader is PSR-0 and PSR-4 compliant.

Phalcon\Loader offers four options to autoload classes. You can use them one at a time or combine them.

Security Layer

Phalcon\Loader offers a security layer sanitizing by default class names avoiding possible inclusion of unauthorized files. Consider the following example:

  1. <?php
  2. // Basic autoloader
  3. spl_autoload_register(
  4. function ($className) {
  5. $filepath = $className . '.php';
  6. if (file_exists($filepath)) {
  7. require $filepath;
  8. }
  9. }
  10. );

The above auto-loader lacks any kind of security. If a function mistakenly launches the auto-loader anda malicious prepared string is used as parameter this would allow to execute any file accessible by the application:

  1. <?php
  2. // This variable is not filtered and comes from an insecure source
  3. $className = '../processes/important-process';
  4. // Check if the class exists triggering the auto-loader
  5. if (class_exists($className)) {
  6. // ...
  7. }

If ../processes/important-process.php is a valid file, an external user could execute the file without authorization.

To avoid these or most sophisticated attacks, Phalcon\Loader removes invalid characters from the class name, reducing the possibility of being attacked.

Registering Namespaces

If you’re organizing your code using namespaces, or using external libraries which do, the registerNamespaces() method provides the autoloading mechanism. It takes an associative array; the keys are namespace prefixes and their values are directories where the classes are located in. The namespace separator will be replaced by the directory separator when the loader tries to find the classes.

  1. <?php
  2. use Phalcon\Loader;
  3. // Creates the autoloader
  4. $loader = new Loader();
  5. // Register some namespaces
  6. $loader->registerNamespaces(
  7. [
  8. 'Example\Base' => 'vendor/example/base',
  9. 'Example\Adapter' => 'vendor/example/adapter',
  10. 'Example' => 'vendor/example',
  11. ]
  12. );
  13. // Register autoloader
  14. $loader->register();
  15. // The required class will automatically include the
  16. // file vendor/example/adapter/Some.php
  17. $some = new \Example\Adapter\Some();

Registering Directories

The third option is to register directories, in which classes could be found. This option is not recommended in terms of performance, since Phalcon will need to perform a significant number of file stats on each folder, looking for the file with the same name as the class. It’s important to register the directories in relevance order.

  1. <?php
  2. use Phalcon\Loader;
  3. // Creates the autoloader
  4. $loader = new Loader();
  5. // Register some directories
  6. $loader->registerDirs(
  7. [
  8. 'library/MyComponent',
  9. 'library/OtherComponent/Other',
  10. 'vendor/example/adapters',
  11. 'vendor/example',
  12. ]
  13. );
  14. // Register autoloader
  15. $loader->register();
  16. // The required class will automatically include the file from
  17. // the first directory where it has been located
  18. // i.e. library/OtherComponent/Other/Some.php
  19. $some = new \Some();

Registering Classes

The last option is to register the class name and its path. This autoloader can be very useful when the folder convention of the project does not allow for easy retrieval of the file using the path and the class name. This is the fastest method of autoloading. However the more your application grows, the more classes/files need to be added to this autoloader, which will effectively make maintenance of the class list very cumbersome and it is not recommended.

  1. <?php
  2. use Phalcon\Loader;
  3. // Creates the autoloader
  4. $loader = new Loader();
  5. // Register some classes
  6. $loader->registerClasses(
  7. [
  8. 'Some' => 'library/OtherComponent/Other/Some.php',
  9. 'Example\Base' => 'vendor/example/adapters/Example/BaseClass.php',
  10. ]
  11. );
  12. // Register autoloader
  13. $loader->register();
  14. // Requiring a class will automatically include the file it references
  15. // in the associative array
  16. // i.e. library/OtherComponent/Other/Some.php
  17. $some = new \Some();

Registering Files

You can also registers files that are non-classes hence needing a require. This is very useful for including files that only have functions:

  1. <?php
  2. use Phalcon\Loader;
  3. // Creates the autoloader
  4. $loader = new Loader();
  5. // Register some classes
  6. $loader->registerFiles(
  7. [
  8. 'functions.php',
  9. 'arrayFunctions.php',
  10. ]
  11. );
  12. // Register autoloader
  13. $loader->register();

These files are automatically loaded in the register() method.

Additional file extensions

Some autoloading strategies such as prefixes, namespaces or directories automatically append the php extension at the end of the checked file. If you are using additional extensions you could set it with the method setExtensions. Files are checked in the order as it were defined:

  1. <?php
  2. use Phalcon\Loader;
  3. // Creates the autoloader
  4. $loader = new Loader();
  5. // Set file extensions to check
  6. $loader->setExtensions(
  7. [
  8. 'php',
  9. 'inc',
  10. 'phb',
  11. ]
  12. );

File checking callback

You can speed up the loader by setting a different file checking callback method using the setFileCheckingCallback method.

The default behavior uses is_file. However you can also use null which will not check whether a file exists or not before loading it or you can use stream_resolve_include_path which is much faster than is_file but will cause problems if the target file is removed from the file system.

  1. <?php
  2. // Default behavior.
  3. $loader->setFileCheckingCallback("is_file");
  4. // Faster than `is_file()`, but implies some issues if
  5. // the file is removed from the filesystem.
  6. $loader->setFileCheckingCallback("stream_resolve_include_path");
  7. // Do not check file existence.
  8. $loader->setFileCheckingCallback(null);

Modifying current strategies

Additional auto-loading data can be added to existing values by passing true as the second parameter:

  1. <?php
  2. // Adding more directories
  3. $loader->registerDirs(
  4. [
  5. '../app/library',
  6. '../app/plugins',
  7. ],
  8. true
  9. );

Autoloading Events

In the following example, the EventsManager is working with the class loader, allowing us to obtain debugging information regarding the flow of operation:

  1. <?php
  2. use Phalcon\Events\Event;
  3. use Phalcon\Events\Manager as EventsManager;
  4. use Phalcon\Loader;
  5. $eventsManager = new EventsManager();
  6. $loader = new Loader();
  7. $loader->registerNamespaces(
  8. [
  9. 'Example\Base' => 'vendor/example/base',
  10. 'Example\Adapter' => 'vendor/example/adapter',
  11. 'Example' => 'vendor/example',
  12. ]
  13. );
  14. // Listen all the loader events
  15. $eventsManager->attach(
  16. 'loader:beforeCheckPath',
  17. function (Event $event, Loader $loader) {
  18. echo $loader->getCheckedPath();
  19. }
  20. );
  21. $loader->setEventsManager($eventsManager);
  22. $loader->register();

Some events when returning boolean false could stop the active operation. The following events are supported:

Event NameTriggeredCan stop operation?
beforeCheckClassTriggered before starting the autoloading processYes
pathFoundTriggered when the loader locate a classNo
afterCheckClassTriggered after finish the autoloading process. If this event is launched the autoloader didn’t find the class fileNo

Troubleshooting

Some things to keep in mind when using the universal autoloader:

  • Auto-loading process is case-sensitive, the class will be loaded as it is written in the code
  • Strategies based on namespaces/prefixes are faster than the directories strategy
  • If a cache bytecode like APC is installed this will used to retrieve the requested file (an implicit caching of the file is performed)