php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #16600 Extend the extends-keyword
Submitted: 2002-04-14 15:06 UTC Modified: 2002-04-14 16:18 UTC
From: hdonner at users dot sourceforge dot net Assigned:
Status: Not a bug Package: Feature/Change Request
PHP Version: 4.2.0 OS: Any
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: hdonner at users dot sourceforge dot net
New email:
PHP Version: OS:

 

 [2002-04-14 15:06 UTC] hdonner at users dot sourceforge dot net
It would be nice if more than one class can be parent of my class.

<?php

class a {
  function a() { }
}
class b {
  function b() { }
}
class c extends a, b {
  function c() {
    $this->a();
    $this->b();
  }
}
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-14 16:18 UTC] mfischer@php.net
This is currently being discussed on ZE2.

It's useless to report such kind of reports. ZE2 will become what it becomes. If people want such huge aspects to be changed, either bring this up on the appropriate list or contribute.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon May 27 06:01:31 2024 UTC