ID: 29828 Updated by: [EMAIL PROTECTED] Reported By: jellybob at gmail dot com -Status: Feedback +Status: Bogus Bug Type: Zend Engine 2 problem Operating System: Linux PHP Version: 5.0.1 New Comment:
You mention on your website that it was Zend Optimizer, so bogussing this report. Please add those comments yourself next time as not all PHP developers are monitoring your website. Previous Comments: ------------------------------------------------------------------------ [2004-08-25 08:29:58] [EMAIL PROTECTED] Thank you for this bug report. To properly diagnose the problem, we need a backtrace to see what is happening behind the scenes. To find out how to generate a backtrace, please read http://bugs.php.net/bugs-generating-backtrace.php Once you have generated a backtrace, please submit it to this bug report and change the status back to "Open". Thank you for helping us make PHP better. ------------------------------------------------------------------------ [2004-08-25 01:52:04] jellybob at gmail dot com Description: ------------ It appears that attempting to implement any interface when creating a class will cause PHP to segfault. Reproduce code: --------------- <?php interface Blah { public function blah(); } class BlahMore implements Blah { public function blah() { echo "Hello, world!"; } } $obj = new BlahMore(); $obj->blah(); ?> Expected result: ---------------- Hello, world! Actual result: -------------- [EMAIL PROTECTED]:~/php-5.0.1> php ~/test.php Segmentation fault ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=29828&edit=1