|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-06-12 11:01 UTC] marvinorez at gmail dot com
[2012-06-15 00:18 UTC] felipe@php.net
[2012-06-15 00:18 UTC] felipe@php.net
-Summary: intercept_add issue
+Summary: crash when using intercept_add function
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: felipe
[2012-06-15 00:18 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 06:00:01 2025 UTC |
Description: ------------ There is a segmentation fault when I try to call intercept_add and set its target. Reproduce code: --------------- <?php function foo() { return 20 + 20; } function trigger() { echo "Triggering it :)\n\n"; } intercept_add("foo","trigger"); foo(); ?> Actual result: -------------- #php example.php Triggering it :) Segmentation fault