CakeFest 2024: The Official CakePHP Conference

Configuración en tiempo de ejecución

El comportamiento de estas funciones se ve afectado por la configuración de php.ini.

uopz Opciones de configuración
Nombre Por defecto Cambiable Historial de cambios
uopz.disable "0" INI_SYSTEM Available as of uopz 5.0.2
uopz.exit "0" INI_SYSTEM Available as of uopz 6.0.1
uopz.overloads "1" INI_SYSTEM Available as of uopz 2.0.2. Removed as of uopz 5.0.0.
Para más detalles y definiciones de los modos de INI_*, vea Dónde se puede realizar un ajuste de configuración.

He aquí una breve explicación de las directivas de configuración.

uopz.disable bool

If enabled, uopz should stop having any effect on the engine.

uopz.exit bool

Whether to allow the execution of exit opcodes or not. This setting can be overridden during runtime by calling uopz_allow_exit().

uopz.overloads bool

Enables the ability to use uopz_overload().

Nota: When running with OPcache enabled, it may be necessary to disable all OPcache optimizations (opcache.optimization_level=0).

add a note

User Contributed Notes

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