From 8eda99cb3b506831edcd7447c63de167a9fb037d Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Mon, 21 Jan 2019 15:27:35 +0000 Subject: [PATCH] Document opcache.preload git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@346615 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/opcache/ini.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/reference/opcache/ini.xml b/reference/opcache/ini.xml index 758c9d3526..9302e24715 100644 --- a/reference/opcache/ini.xml +++ b/reference/opcache/ini.xml @@ -239,6 +239,12 @@ PHP_INI_SYSTEM Available as of PHP 7.0.14 + + opcache.preload + "" + PHP_INI_SYSTEM + Available as of PHP 7.4.0 + @@ -770,6 +776,21 @@ + + + opcache.preload + string + + + + Specifies a PHP script that is going to be compiled and executed at server start-up, + and which may preload other files, either by includeing them or by + using the opcache_compile_file function. All the entities (e.g. + functions and classes) defined in these files will be available to requests out of + the box, until the server is shut down. + + +