|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-02-06 17:55 UTC] gopalv82 at yahoo dot com
[2009-07-15 10:14 UTC] gopalv82 at yahoo dot com
[2009-07-15 13:13 UTC] r dot borschel at gmx dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 15:00:02 2025 UTC |
Description: ------------ I'm getting a "Bus error" when using closures while APC is enabled. The script can be as simple as this: As soon as I disable APC (apc.enabled=0) it works fine. Reproduce code: --------------- <?php $func = function() { echo "foo"; }; ?> Expected result: ---------------- No bus error :-) Actual result: -------------- "Bus error"