摘要:
<?phpfunction add_include_path ($path){ foreach (func_get_args() AS $path) { if (!file_exists($path) OR (file_exists($path) && filetype($path) !== 'dir')) { trigger_error("Include path '{$path}' not exists", E_USER_WARNING); continue; } $paths = explode(PATH_SEPA 阅读全文