這些函數(shù)的行為受 php.ini 中的設(shè)置影響。
名字 | 默認(rèn) | 可修改范圍 | 更新日志 |
---|---|---|---|
v8js.max_disposed_contexts | 25 | PHP_INI_ALL | |
v8js.flags | PHP_INI_ALL |
這是配置指令的簡(jiǎn)短說(shuō)明。
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!