From:             [EMAIL PROTECTED]
Operating system: Any
PHP version:      4.2.0
PHP Bug Type:     Feature/Change Request
Bug description:  Extend the extends-keyword

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();
  }
}
?>
-- 
Edit bug report at http://bugs.php.net/?id=16600&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=16600&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=16600&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=16600&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=16600&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=16600&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=16600&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=16600&r=notenoughinfo
Submitted twice:     http://bugs.php.net/fix.php?id=16600&r=submittedtwice

Reply via email to