我的应用使用require
来加载应用路由,例如
require __DIR__ . '/Order.php';
我已经打开opcache
扩展名,配置为
enable_cli=1
memory_consumption=128
interned_strings_buffer=8
max_accelerated_files=4000
revalidate_freq=60
fast_shutdown=1
opcache.save_comments=0
我想知道php是否在每个请求中都从文件系统重新加载__DIR__ . '/Order.php'
,即使启用了opcache
。
答案 0 :(得分:1)
是的,如果您想避免这种情况,请使用require_once