示例

基本用法

示例 #1 基本 Javascript 执行

<?php

$v8
= new V8Js();

/* basic.js */
$JS = <<< EOT
len = print('Hello' + ' ' + 'World!' + "\\n");
len;
EOT;

try {
var_dump($v8->executeString($JS, 'basic.js'));
} catch (
V8JsException $e) {
var_dump($e);
}

?>

上面的示例将输出

Hello World!
int(13)
添加备注

用户贡献的备注 1 备注

nabikaz at gmail dot com
1 年前
如果你想让 JS 代码的输出不在输出中打印,而是在 PHP 中

<?php
// 创建一个新的 V8Js 对象
$v8 = new V8Js();

// 定义一个 JavaScript 函数
$JS = <<<EOT
(function() {
return 'Hello World!';
})();
EOT;

// 使用 V8js 执行 JavaScript 函数
$result = $v8->executeString($JS);

// 输出结果
var_dump($result);
?>

输出
string(12) "Hello World!"
To Top