Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/less.php/lib/Less/Autoloader.php
Ðазад
<?php /** * Autoloader */ class Less_Autoloader { /** @var bool */ protected static $registered = false; /** * Register the autoloader in the SPL autoloader * * @return void * @throws Exception If there was an error in registration */ public static function register() { if ( self::$registered ) { return; } if ( !spl_autoload_register( [ __CLASS__, 'loadClass' ] ) ) { throw new Exception( 'Unable to register Less_Autoloader::loadClass as an autoloading method.' ); } self::$registered = true; } /** * Unregister the autoloader * * @return void */ public static function unregister() { spl_autoload_unregister( [ __CLASS__, 'loadClass' ] ); self::$registered = false; } /** * Load the class * * @param string $className The class to load */ public static function loadClass( $className ) { // handle only package classes if ( strpos( $className, 'Less_' ) !== 0 ) { return; } $className = substr( $className, 5 ); $fileName = __DIR__ . DIRECTORY_SEPARATOR . str_replace( '_', DIRECTORY_SEPARATOR, $className ) . '.php'; require $fileName; return true; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка