1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<?php
// Start of Zend OPcache v.7.0.4-devFE
/**
* Resets the contents of the opcode cache
* @link http://www.php.net/manual/en/function.opcache-reset.php
* @return boolean true if the opcode cache was reset, or false if the opcode
* cache is disabled.
*/
function opcache_reset () {}
/**
* Invalidates a cached script
* @link http://www.php.net/manual/en/function.opcache-invalidate.php
* @param script string <p>
* The path to the script being invalidated.
* </p>
* @param force boolean[optional] <p>
* If set to true, the script will be invalidated regardless of whether
* invalidation is necessary.
* </p>
* @return boolean true if the opcode cache for script was
* invalidated or if there was nothing to invalidate, or false if the opcode
* cache is disabled.
*/
function opcache_invalidate ($script, $force = null) {}
/**
* Compiles and caches a PHP script without executing it
* @link http://www.php.net/manual/en/function.opcache-compile-file.php
* @param file string <p>
* The path to the PHP script to be compiled.
* </p>
* @return boolean true if file was compiled successfully
* &return.falseforfailure;.
*/
function opcache_compile_file ($file) {}
/**
* @param script
*/
function opcache_is_script_cached ($script) {}
function accelerator_reset () {}
/**
* @param script
* @param force[optional]
*/
function accelerator_invalidate ($script, $force) {}
/**
* @param file
*/
function accelerator_compile_file ($file) {}
/**
* @param script
*/
function accelerator_is_script_cached ($script) {}
/**
* Get configuration information about the cache
* @link http://www.php.net/manual/en/function.opcache-get-configuration.php
* @return array an array of information, including ini, blacklist and version
*/
function opcache_get_configuration () {}
/**
* Get status information about the cache
* @link http://www.php.net/manual/en/function.opcache-get-status.php
* @param get_scripts boolean[optional] <p>
* Include script specific state information
* </p>
* @return array an array of information, optionally containing script specific state information
*/
function opcache_get_status ($get_scripts = null) {}
function accelerator_get_configuration () {}
/**
* @param fetch_scripts[optional]
*/
function accelerator_get_status ($fetch_scripts) {}
// End of Zend OPcache v.7.0.4-devFE
?>
|