CakeFest 2024: The Official CakePHP Conference

opcache_compile_file

(PHP 5 >= 5.5.5, PHP 7, PHP 8, PECL ZendOpcache > 7.0.2)

opcache_compile_fileCompile et met en cache un script PHP sans l'exécuter

Description

opcache_compile_file(string $filename): bool

Cette fonction compile un script PHP et l'ajoute au cache d'opcode sans l'exécuter. Ceci peut être utilisé pour remplir un cache après un redémarrage de serveur en précachant les fichiers qui vont être amenés à être utilisés.

Liste de paramètres

filename

Le chemin vers le fichier PHP à compiler et mettre en cache.

Valeurs de retour

Retourne true si filename a été compilé avec succès ou false si une erreur survient.

Erreurs / Exceptions

Si filename ne peut être chargé ou compilé, une erreur de type E_WARNING est renvoyée. Vous pouvez utiliser @ pour la supprimer.

Voir aussi

add a note

User Contributed Notes 1 note

up
18
IceNV
6 years ago
Be aware that opcache will only compile and cache files older than the script execution start.

For instance, if you use a script to generate cache files (e.g. you don't have access to shmop and rely on opcache for in-memory data caching instead), opcache_compile_file will not include the generated file in the cache, because its modification time is after the script start.

The workaround is to use touch() to set a date before the script execution date, then opcache will compile and cache the generated file.
To Top