V8Js::registerExtension
(PECL v8js >= 0.1.0)
V8Js::registerExtension — Register Javascript extensions for V8Js
说明
public static V8Js::registerExtension(
string
string
array
bool
): bool
string
$extension_name,string
$script,array
$dependencies = array(),bool
$auto_enable = false): bool
Registers passed Javascript script as extension to
be used in V8Js contexts.
参数
extension_name-
Name of the extension to be registered.
script-
The Javascript code to be registered.
dependencies-
Array of extension names the extension to be registered depends on. Any such extension is enabled automatically when this extension is loaded.
注意:
All extensions, including the dependencies, must be registered before any V8Js are created which use them.
auto_enable-
If set to
true, the extension will be enabled automatically in all V8Js contexts.