Laufzeit-Konfiguration

Das Verhalten dieser Funktionen wird durch Einstellungen in der php.ini beeinflusst.

uopz Konfigurationsoptionen
NameStandardVeränderbarChangelog
uopz.disable"0"INI_SYSTEMAvailable as of uopz 5.0.2
uopz.exit"0"INI_SYSTEMAvailable as of uopz 6.0.1
uopz.overloads"1"INI_SYSTEMAvailable as of uopz 2.0.2. Removed as of uopz 5.0.0.
Weitere Details und die Definitionen der INI_*-Konstanten sind unter Wo Konfigurationseinstellungen gesetzt werden können zu finden.

Hier eine kurze Erklärung der Konfigurationsoptionen:

uopz.disablebool

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

uopz.exitbool

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

uopz.overloadsbool

Enables the ability to use uopz_overload().

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

To Top