Laufzeit-Konfiguration
Das Verhalten dieser Funktionen wird durch Einstellungen in der php.ini beeinflusst.
| Name | Standard | Veränderbar | Changelog |
|---|---|---|---|
| ffi.enable | "preload" | PHP_INI_SYSTEM | |
| ffi.preload | "" | PHP_INI_SYSTEM |
Hier eine kurze Erklärung der Konfigurationsoptionen:
-
ffi.enablestring -
Allows enabling (
"true") or disabling ("false") FFI API usage, or restricting it only to the CLI SAPI and preloaded files ("preload").The FFI API restrictions only affect the FFI class, but not overloaded functions of FFI\CData objects. This means that it is possible to create some FFI\CData objects in preloaded files, and then to use these directly in PHP scripts.
-
ffi.preloadstring -
Allows preloading of FFI bindings during startup, which is not possible with FFI::load() if opcache.preload_user is set. This directive accepts a
DIRECTORY_SEPARATORdelimited list of filenames. The preloaded bindings can be accessed by calling FFI::scope().

