| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2003-12-29 07:34 UTC] helly@php.net
  [2003-12-29 19:37 UTC] jaanus at heeringson dot com
  [2003-12-29 19:54 UTC] jaanus at heeringson dot com
  | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 07:00:01 2025 UTC | 
Description: ------------ Autoload is not invoked for missing parent class in object declaration. This worked with php5-beta2. Reproduce code: --------------- Child_class and Parent_class are in separate documents. Autoload function is working. class Child_class extends Parent_class { } $class=new Child_class(); Expected result: ---------------- No errors, everything loads. Actual result: -------------- Fatal error: Class 'Parent_class' not found in [path to Child_class document] on line 2