Query: opcache_compile_file
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
OPCACHE_COMPILE_FILE(3) 1 OPCACHE_COMPILE_FILE(3) opcache_compile_file - Compiles and caches a PHP script without executing itSYNOPSISboolean opcache_compile_file (string $file)DESCRIPTIONThis 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.PARAMETERSo $file - The path to the PHP script to be compiled.RETURN VALUESReturns TRUE if $file was compiled successfully or FALSE on failure.ERRORS/EXCEPTIONS If $file cannot be loaded or compiled, an error of level E_WARNING is generated. You may use @ to suppress this warning.SEE ALSOopcache_invalidate(3). PHP Documentation Group OPCACHE_COMPILE_FILE(3)