0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 23:35:19 +00:00
phpv8/samples/test_date.php

10 lines
216 B
PHP
Raw Normal View History

2012-04-27 16:26:15 +00:00
<?php
$a = new V8Js();
try {
var_dump($a->executeString("date = new Date('September 8, 1975 09:00:00'); print(date + '\\n'); date;", "test.js"));
} catch (V8JsScriptException $e) {
2012-04-27 16:26:15 +00:00
echo $e->getMessage(), "\n";
}