|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-04-15 15:44 UTC] gys0324 at yeah dot net
[2011-04-17 05:26 UTC] gys0324 at yeah dot net
-PHP Version: 5.2.17
+PHP Version: 5.3.6
[2011-04-17 05:26 UTC] gys0324 at yeah dot net
[2018-07-08 15:08 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2018-07-08 15:08 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 23:00:01 2025 UTC |
Description: ------------ spl_autoload_register Loading order Test script: --------------- A0Class.php <? namespace TESTING; use TESTING\BClass; class A0Class extend BClass{ } A1Class.php <? namespace TESTING; use TESTING\BClass; class A1Class extend BClass{ } BClass.php <? namespace TESTING; use TESTING\BClass; class BClass{ public function __construct(){ echo "Child Start"; } } Bootstrap.php <?php namespace TESTING; class Bootstrap { private static $classes = array (); public static function init() { Bootstrap::requireOnce ( __DIR__ ); Bootstrap::loadClass (); } public static function getClasses() { return Bootstrap::$classes; } private static function requireOnce($path) { foreach ( scandir ( $path ) as $object ) { if ($object != '.' && $object != '..') { $object = $path . DIRECTORY_SEPARATOR . $object; if (is_file ( $object ) && file_exists ( $object )) { if (preg_match ( '/\.php$/', $object ) && ! preg_match ( '/Bootstrap\.php$/', $object ) && ! preg_match ( '/testFile\.php$/', $object ) && !in_array()) { Bootstrap::$classes [] = $object; } } else if (is_dir ( $object )) { Bootstrap::requireOnce ( $object ); } } } } private static function loadClass() { for($i = 0; $i < count ( Bootstrap::$classes ); $i ++) { require_once Bootstrap::$classes [$i]; } } } spl_autoload_register ( array ('TESTING\Bootstrap', 'init' ) ); testFile.php <?php require_once 'lib/Bootstrap.php'; use TESTING\A0Class; $a0 = new A0Class(); Expected result: ---------------- Child Start Actual result: -------------- Fatal error: Class 'TESTING\BClass' not found