0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 00:25:18 +00:00
phpv8/tests/global_object_basic.phpt

26 lines
483 B
Plaintext
Raw Permalink Normal View History

--TEST--
Test V8Js::executeString : Global scope links global object
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$JS = <<< EOT
var_dump(typeof global);
var_dump(global.var_dump === var_dump);
2017-11-12 14:28:44 +00:00
// also this is equal to global scope, at least in global execution context
// (i.e. off modules)
var_dump(this === global);
EOT;
$v8 = new V8Js();
$v8->executeString($JS);
?>
===EOF===
--EXPECT--
string(6) "object"
bool(true)
2017-11-12 14:28:44 +00:00
bool(true)
===EOF===