|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-06-14 13:40 UTC] romy4 at online dot ua
[2006-06-19 08:04 UTC] mike@php.net
[2006-06-27 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 07:00:01 2025 UTC |
Description: ------------ PHP crashes at callback calls of static class functions Reproduce code: --------------- sample: <?php class MyClass{ static public function mycbk($data) { //mine code } } //for example any callback ob_start("MyClass::mycbk"); //... echo "bla bla bla"; //... ob_end_flush();//<-- here crashes ?> Expected result: ---------------- expected normal calling Actual result: -------------- php crashes Application error php.exe, version 5.1.4.4, module unknown, version 0.0.0.0, address 0x013b1c80. i used php as cgi module and apache integrated module.