在PHP中配置opcache有兩種方法:
[opcache]
opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=2
opcache.fast_shutdown=1
可以根據實際需要調整這些配置參數。
opcache_reset(); // 重置opcache緩存
opcache_invalidate($file, $force = false); // 強制重新編譯特定文件
opcache_compile_file($file); // 編譯特定文件
opcache_get_configuration(); // 獲取opcache配置信息
opcache_get_status(); // 獲取opcache狀態信息
通過這些函數可以對opcache進行動態配置和管理。