OPcache 函数
PHP Manual

opcache_compile_file

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

opcache_compile_fileCompiles and caches a PHP script without executing it

说明

boolean opcache_compile_file ( string $file )

This function compiles a PHP script and adds it to the opcode cache without executing it. This can be used to prime the cache after a Web server restart by pre-caching files that will be included in later requests.

参数

file

The path to the PHP script to be compiled.

返回值

Returns TRUE if file was compiled successfully 或者在失败时返回 FALSE.

错误/异常

If file cannot be loaded or compiled, an error of level E_WARNING is generated. You may use @ to suppress this warning.

参见


OPcache 函数
PHP Manual