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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
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 Jun 17 16:01:29 2024 UTC