PHP :: Bug #29828 :: Interfaces no longer work
| Bug #29828 | Interfaces no longer work | ||||
|---|---|---|---|---|---|
| Submitted: | 2004-08-25 01:52 UTC | Modified: | 2004-08-27 00:48 UTC | ||
| From: | jellybob at gmail dot com | Assigned: | helly (profile) | ||
| Status: | Closed | Package: | Scripting Engine problem | ||
| PHP Version: | 5.0.1 | OS: | * | ||
| Private report: | No | CVE-ID: | None | ||
[2004-08-25 01:52 UTC] 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:
--------------
jon@bertha:~/php-5.0.1> php ~/test.php
Segmentation fault
Patches
Pull Requests
History
AllCommentsChangesGit/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