Don't ask why it is this way, but say we have these files:

::::::::::::::
inc1.php
::::::::::::::
<?

class base  {

        function ForumStyle() {
                echo ('hi');
        }

}

?>
::::::::::::::
inc2.php
::::::::::::::
<?

class ForumStyle extends base {
 var $temp;
}

?>
::::::::::::::
inc3.php
::::::::::::::
<?

class Outline_ForumStyle extends ForumStyle {

        function Outline_ForumStyle () {
                $this->ForumStyle();
        }
}

?>
::::::::::::::
test.php
::::::::::::::
<?
include ('inc1.php');
include ('inc2.php');
include ('inc3.php');

$i = new Outline_ForumStyle();


It runs fine printing 'hi' (though not with APC, but fine with Zend Cache).

BUT, What _should_ happen?

BTW: For the APC list, this is a test case of bug #3. Use the apc_gui to
look at inc3.php

Sincerely,

Steven Roussey
Network54.com
http://network54.com/?pp=e


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to