|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-09-18 10:17 UTC] tianbin at cernet dot edu dot cn
[2017-01-10 08:01 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-01-10 08:01 UTC] kalle@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 00:00:01 2025 UTC |
Description: ------------ If I try to store a JSContext object in a static class, I hit a segfault. Reproduce code: --------------- <?php class StaticClass { public static $context; } StaticClass::$context = new jsContext(); echo StaticClass::$context->evaluateScript("Hello, world."); ?> Expected result: ---------------- Print "Hello, world." Actual result: -------------- Segfault (page remains blank)