在PHP中,可以使用spl_autoload_unregister()函数来关闭自动加载文件。该函数用于注销一个自动加载函数。以下是一个示例:
spl_autoload_unregister()
spl_autoload_unregister('autoload_function');
其中,autoload_function是要关闭的自动加载函数的名称。使用该函数后,PHP将不再自动调用该函数来载入文件。
autoload_function