Ai_GirlFriend/xunifriend_RaeeC/vendor/maniac/easemob-php/autoload.php
2026-01-31 19:15:41 +08:00

20 lines
578 B
PHP

<?php
/**
* @ignore 自动加载
*/
if ( file_exists(dirname(__FILE__).'/vendor/autoload.php') ) {
require_once dirname(__FILE__).'/vendor/autoload.php';
}
function class_loader($className)
{
$file = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . str_replace("Easemob" . DIRECTORY_SEPARATOR, "", str_replace("\\", DIRECTORY_SEPARATOR, $className)) . '.php';
if (file_exists($file)) {
require_once $file;
}
}
spl_autoload_register('class_loader');
require __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'functions.php';