--TEST-- Test V8::executeString() : Handle die() gracefully --SKIPIF-- --FILE-- foo = function() { echo "Hallo\n"; die("Goodbye cruel world!\n"); }; $v8->executeString('PHP.foo();'); ?> ===EOF=== --EXPECT-- Hallo Goodbye cruel world!