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
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
21 - 16 = ?
Subscribe to this entry?

 
 [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 17:01:29 2024 UTC