|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-09-10 05:37 UTC] pdezwart@php.net
-Status: Open
+Status: Duplicate
[2012-09-10 05:37 UTC] pdezwart@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
Description: ------------ print_r of an object inside consume() will drop a segmentation fault. (amqp module version - latest trunk code) Test script: --------------- $object->consume( function ($message, $queue) { $a = new stdClass(); print_r( $a ); } );