运行时配置

这些函数的行为受 php.ini 中的设置影响。

V8js 配置选项
名字默认可修改范围更新日志
v8js.max_disposed_contexts25INI_ALL
v8js.flags INI_ALL

这是配置指令的简短说明。

v8js.max_disposed_contextsint

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

v8js.flagsstring

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!

To Top