ruạṛ
<?php spl_autoload_register(function ($className) { $searchPattern = 'BTCPayServer'; // Abort here if we do not try to load BTCPayServer namespace. if (strpos($className, $searchPattern) !== 0) { return; } // Convert namespace and class to file path. $filePath = __DIR__ . str_replace([$searchPattern, '\\'], ['', DIRECTORY_SEPARATOR], $className).'.php'; if (file_exists($filePath)) { require_once($filePath); return; } });
cải xoăn