Dutch PHP Conference 2025 - Call For Papers

Налаштування під час виконання

На поведінку цих функцій випливають налаштування в php.ini.

V8js Параметри конфігурації
Назва Початково Де можна змінювати Журнал змін
v8js.max_disposed_contexts 25 INI_ALL
v8js.flags   INI_ALL

Тут є коротке пояснення директив конфігурації.

v8js.max_disposed_contexts int

Sets limit for disposed contexts before forcing V8 to do garbage collection.

v8js.flags string

Sets V8 command line flags. The list of available flags can be obtained in CLI mode by setting this parameter to --help. Example:

$ php -r 'ini_set("v8js.flags", "--help"); new V8Js;' | less

Зауваження:

For these flags to be effective in runtime the ini_set() call has to be done before any V8Js objects are instantiated!

add a note

User Contributed Notes

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