Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
opcache_compile_file
(PHP 5 >= 5.5.5, PECL ZendOpcache > 7.0.2)
opcache_compile_file — Compiles 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_invalidate() - Invalidates a cached script
User Contributed Notes 2 notes
0
Anonymous ¶2 months ago
I have seen that in php5.6 new function opcache_is_script_cached() appeared. But I can not find any documentation about it. Anyone can enlighten me about it?
0
Rashad Aliyev ¶7 months ago
var_dump(opcache_get_configuration());
Описание на ru2.php.net
Описание на php.ru