update page now
PHP 8.5.2 Released!

opcache_is_script_cached_in_file_cache

(PHP 8 >= 8.5.0)

opcache_is_script_cached_in_file_cacheTells whether a script is cached in OPCache file cache

説明

opcache_is_script_cached_in_file_cache(string $filename): bool

This function checks if a PHP script has been cached in OPCache. This can be used to more easily detect the "warming" of the cache for a particular script. This function only checks file cache cache, not in-memory cache. In order to check in-memory cache, use opcache_is_script_cached().

パラメータ

filename
The path to the PHP script to be checked.

戻り値

Returns true if filename is cached in OPCache, false otherwise.

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top