|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-08-25 08:29 UTC] derick@php.net
[2004-08-25 09:55 UTC] derick@php.net
[2004-08-26 23:57 UTC] helly@php.net
[2004-08-27 00:02 UTC] jellybob@php.net
[2004-08-27 00:48 UTC] helly@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 05:00:01 2025 UTC |
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: -------------- jon@bertha:~/php-5.0.1> php ~/test.php Segmentation fault