opcache_compile_file
(PHP 5 >= 5.5.5, PHP 7, PHP 8, PECL ZendOpcache > 7.0.2)
opcache_compile_file — 无需运行,即可编译并缓存 PHP 脚本
说明
该函数可以用于在不用运行某个 PHP 脚本的情况下,编译该 PHP 脚本并将其添加到字节码缓存中去。 该函数可用于在 Web 服务器重启之后初始化缓存,以供后续请求调用。
参数
filename
-
被编译的 PHP 脚本的路径。
+添加备注
用户贡献的备注 1 note
IceNV ¶
7 years ago
Be aware that opcache will only compile and cache files older than the script execution start.
For instance, if you use a script to generate cache files (e.g. you don't have access to shmop and rely on opcache for in-memory data caching instead), opcache_compile_file will not include the generated file in the cache, because its modification time is after the script start.
The workaround is to use touch() to set a date before the script execution date, then opcache will compile and cache the generated file.
备份地址:http://www.lvesu.com/blog/php/function.opcache-compile-file.php