Examples

Basic usage

Example #1 Basic Javascript execution

<?php$v8 = new V8Js();/* basic.js */$JS = <<< EOTlen = print('Hello' + ' ' + 'World!' + "\\n");len;EOT;try {  var_dump($v8->executeString($JS, 'basic.js'));} catch (V8JsException $e) {  var_dump($e);}?>

The above example will output:

Hello World!
int(13)