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
 [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 11:01:31 2024 UTC