[EMAIL PROTECTED]:~/devel/php/tests > cat inheritance.php 
<?php
  class Object {
    function __construct() { }
  }

  class String extends Object {
    function __construct() { }
  }

  var_dump(new String());
?>
[EMAIL PROTECTED]:~/devel/php/tests > php5 inheritance.php 

Fatal error: Declaration of string::__construct() must be the same as
::() in /usr/home/thekid/devel/php/tests/inheritance.php on line 6

- Timm


-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to