Requests::autoloader( string $class )
Autoloader for Requests
Description
Register this with register_autoloader() if you’d like to avoid having to create your own.
(You can also use spl_autoload_register
directly if you’d prefer.)
Parameters
- $class
-
(string) (Required) Class name to load
Source
File: wp-includes/class-requests.php
public static function autoloader($class) { // Check that the class starts with "Requests" if (strpos($class, 'Requests') !== 0) { return; } $file = str_replace('_', '/', $class); if (file_exists(dirname(__FILE__) . '/' . $file . '.php')) { require_once dirname(__FILE__) . '/' . $file . '.php'; } }
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests/autoloader