mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 18:58:41 +00:00
30 lines
770 B
PHP
30 lines
770 B
PHP
--TEST--
|
|
Test V8::executeString() : Pass JS date to PHP
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
ini_set('v8js.use_date', 1);
|
|
|
|
// Set date.timezone since run-tests.php calls php without it being set;
|
|
// which causes the test to fail on PHP 5.3 as it shows a warning message
|
|
// in the output.
|
|
ini_set('date.timezone', 'Europe/Berlin');
|
|
|
|
$a = new V8Js();
|
|
$a->var = new \DateTime("Wed, 19 Mar 2014 14:37:11 +0000");
|
|
$a->executeString('print(PHP.var.toGMTString()); print("\n");');
|
|
ini_set('v8js.use_date', 0);
|
|
|
|
$a = new V8Js();
|
|
$a->var = new \DateTime("Wed, 19 Mar 2014 14:37:11 +0000");
|
|
$a->executeString('print(PHP.var.toString()); print("\n");');
|
|
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
Wed, 19 Mar 2014 14:37:11 GMT
|
|
[object %s]
|
|
===EOF===
|