--TEST-- Test V8::setMemoryLimit() : Memory limit can be imposed later --SKIPIF-- --FILE-- imposeMemoryLimit = function() use ($v8) { $v8->setMemoryLimit(10000000); }; $func = $v8->executeString($JS); var_dump($func); try { $func(); } catch (V8JsMemoryLimitException $e) { print get_class($e); print PHP_EOL; print $e->getMessage(); print PHP_EOL; } ?> ===EOF=== --EXPECTF-- object(V8Function)#%d (0) { } V8JsMemoryLimitException Script memory limit of 10000000 bytes exceeded ===EOF===