百科狗-知识改变命运!
--

opcache_compile_file() - opcache函数(PHP脚本缓存)

是丫丫呀12个月前 (11-21)阅读数 18#技术干货
文章标签脚本

opcache_compile_file()

opcache_compile_file() - opcache函数(PHP脚本缓存)

(PHP 5 >= 5.5.5, PHP 7, PECL ZendOpcache > 7.0.2)

无需运行,即可编译并缓存 PHP 脚本

说明

opcache_compile_file(string $file):boolean

该函数可以用于在不用运行某个 PHP 脚本的情况下,编译该 PHP 脚本并将其添加到字节码缓存中去。该函数可用于在 Web 服务器重启之后初始化缓存,以供后续请求调用。

参数

$file

被编译的 PHP 脚本的路径。

返回值

如果$file被成功编译,则返回TRUE或者在失败时返回FALSE

错误/异常

如果文件($file)不能被载入或者不能被编译,则会生成一个E_WARNING级别的错误。可以使用@来抑制该警告。

参见

  • opcache_invalidate()废除脚本缓存
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.
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)