PHP spl_autoload和class_exsits使用技能

2024-05-28 16:58

本文主要是介绍PHP spl_autoload和class_exsits使用技能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文章的PHP使用版本:5.4.7

PHP建议使用:
spl_autoload_register
那么写了一种实现

文件路径

  • core
    • core.php
    • ChildrenClass.php
    • ParentClass.php
  • test
    • index.php

core.php:


<?php/*** Created by PhpStorm.* User: http://blog.csdn.net/cor_twi* Date: 2016/02/25* Time: 11:23*/spl_autoload_register(function ($classId)
{$dirname            = dirname(__FILE__);$classIdParts       = explode("\\", $classId);$classIdLength      = count($classIdParts);$className          = ($classIdParts[$classIdLength - 1]);$defaultNameSpace   = substr(strrchr($dirname,"\\"),1); $namespace          = $classIdLength==1? $defaultNameSpace : $classIdParts[0];for ($i = 1; $i < $classIdLength-1; $i++) {$namespace .= '/' . $classIdParts[$i];}$path = dirname(__FILE__) . "/../" . $namespace . "/" . $className . '.php';$realPath = realpath($path);#print "autoload:realPath:" .  $realPath."\n";if (file_exists($realPath)) {if(!class_exists($className,false)){$ret = include($realPath);print "spl_autoload_  autoload:$className is loaded : result = $ret \n";}elseprint "spl_autoload_ autoload:$className is already loaded\n";}
});

ChildrenClass.php:

<?php
namespace CORE;
use CORE\ParentClass;
/*** Created by PhpStorm.* User: http://blog.csdn.net/cor_twi* Date: 2016/02/22* Time: 9:55*/
class ChildrenClass extends ParentClass
{private $varPro_;public  function __construct($var01,$var02){parent::__construct($var01,$var02);$this->varPro_ = "ChildrenClass";}}

ParentClass.php:

<?php/*** Created by PhpStorm.* User: http://blog.csdn.net/cor_twi* Date: 2016/02/22* Time: 9:40*/
namespace CORE;
class ParentClass
{public static $variable01;public static $variable02;protected  $varPro;/***constructor*/public function __construct($var1,$var2){self::$variable01 = $var1;self::$variable02 = $var2;$this->varPro = "ParentClass";}
}

index.php:

<?php
/*** Created by PhpStorm.* User: http://blog.csdn.net/cor_twi* Date: 2016/03/05* Time: 16:06*/
require('../core/core.php');use CORE\ParentClass;
use CORE\ChildrenClass;print "Section01------------------------\n\n";print "\nSection02------------------------\n\n";$instance01 = new ChildrenClass('aa','vv');
$instance02 = new ParentClass('bb','uu');print "\nSection03------------------------\n\n";
print "Class Load Test-----------------------\n";if(!class_exists('ChildrenClass')){print "\n************\nWarning : in Section 03 : \nClass ChildrenClass is not loaded\n";
}$interfaces = class_implements("ParentClass");print_r($interfaces);
if(isset($interfaces['ParentClass'])){print "OK,PASS";
}
else{print "NO,IT'S NOT";
}print "\nSection04------------------------\n\n";
if(!class_exists('ChildrenClass')){print "\n************\nTEST : in Section 04 : \nClass ChildrenClass is not loaded\n";
}$rc =  new ReflectionClass('ChildrenClass');
try {if($rc->implementsInterface('ParentClass')){print 'imples';}print 'parent class:' . $rc->getParentClass();
}catch(ReflectionException $e){}

然后输出结果是:

J:\xampp\php\php.exe E:\phpStormWorks\php01\test\index.php
Section01------------------------Section02------------------------spl_autoload_  autoload:ParentClass is loaded : result = 1 
spl_autoload_  autoload:ChildrenClass is loaded : result = 1 Section03------------------------Class Load Test-----------------------************
Warning : in Section 03 : 
Class ChildrenClass is not loaded
spl_autoload_  autoload:ParentClass is loaded : result = 1 Warning: class_implements(): Class ParentClass does not exist and could not be loaded in E:\phpStormWorks\php01\test\index.php on line 29Call Stack:0.0008     131888   1. {main}() E:\phpStormWorks\php01\test\index.php:00.0042     147400   2. class_implements() E:\phpStormWorks\php01\test\index.php:29NO,IT'S NOT
Section04------------------------************
TEST : in Section 04 : 
Class ChildrenClass is not loaded
spl_autoload_  autoload:ChildrenClass is loaded : result = 1 Fatal error: Uncaught exception 'ReflectionException' with message 'Class ChildrenClass does not exist' in E:\phpStormWorks\php01\test\index.php on line 46ReflectionException: Class ChildrenClass does not exist in E:\phpStormWorks\php01\test\index.php on line 46Call Stack:0.0008     131888   1. {main}() E:\phpStormWorks\php01\test\index.php:00.0079     147816   2. ReflectionClass->__construct() E:\phpStormWorks\php01\test\index.php:46Process finished with exit code 255

总结:
class_implements()
ReflectionClass()
class_exists()
$interfaces = class_implements(‘\CORE\TestImpl’);
对于当前版本来说:
这几个类的名字必须写use 的短语 as 的也不行:
例如:class_exists(‘\CORE\ParentClass’)
$interfaces[‘CORE\Interf’]
namespace前面的\无所谓
但是interfaces[‘CORE\Interf’] 前面的\有所谓!!!

总结
对于写了namespace的类文件来说,你有两个选择
要么use namespace要么new 和 instanceof 的时候使用namespace,否则出现Fatal error: Class ‘TestImpl’ not found in 即便它正确触发spl_autoload。【原因见后面<Reason>】
要么用namespace前缀来使用这个类符号
如果没有写namespace的呢
没有写namespace的类文件,可以随意使用他的类名字,自动触发spl_autoload注册的函数。
对于类或者接口,class_exsits()和interface_exsits()都如果有他们有namespace需要使用它才能返回正确的结果。
对于class_implements()、ReflectionClass()和implementsInterface(),如果类或者接口具有namespace必须使用带namespace的名称符号来作为参数,否则你将看到:Fatal error: Cannot redeclare class NAMESPACE\XXXXClass in
原因未知:是个bug,经过测试PHP7也有这个问题PHP或许不承认他是个BUG。而且加载器无法检查出来已经被加载。如果你改成class_implements(‘XXXXClass’,false);那么就是[PHP 5.4.7]Warning: class_implements(): Class ChildrenClass does not exist in (即使你写了use)

PHP7:的报错是
PHP Fatal error: Cannot declare class CORE\ChildrenClass, because the name is already in use in E:\phpStormWorks\php01\core\ChildrenClass.php on line 29
PHP Stack trace:
PHP 1. {main}() E:\phpStormWorks\php01\test\index.php:0
PHP 2. class_implements() E:\phpStormWorks\php01\test\index.php:93
PHP 3. spl_autoload_call() E:\phpStormWorks\php01\test\index.php:93

<Reason>:由现象倒推而来,所有的PHP版本,对于有namespace的类或者接口,它是以 带namespace的形式autoload的,不管你写不写use

如果用include_once(),那么不在本文研究范围之内

写的时候手贱文章弄没有了一次,重写之。
测试结论仅供参考。
附上spl_autoload_实现:

<?php/*** Created by PhpStorm.* User: http://blog.csdn.net/cor_twi* Date: 2016/02/25* Time: 11:23*/spl_autoload_register(function ($classId)
{$dirname            = dirname(__FILE__);$classIdParts       = explode("\\", $classId);$classIdLength      = count($classIdParts);$className          = ($classIdParts[$classIdLength - 1]);$defaultNameSpace   = substr(strrchr($dirname,"\\"),1); //here is core$namespace          = $classIdLength==1? $defaultNameSpace : $classIdParts[0];for ($i = 1; $i < $classIdLength-1; $i++) {$namespace .= '/' . $classIdParts[$i];}$path = dirname(__FILE__) . "/../" . $namespace . "/" . $className . '.php';$realPath = realpath($path);#print "autoload:realPath:" .  $realPath."\n";if(class_exists($classId,false)||interface_exists($classId,false)){
//如果代码能进来这个函数说明没有被加载,便不会执行到这里,无法阻止Fatal error: Cannot redeclare classprint "spl_autoload_  preCheck:$className | $classId | is already loaded\n";}if (file_exists($realPath)) {if(class_exists($className,false)||interface_exists($className,false)){print "spl_autoload_  autoload:$className | $classId | is already loaded\n";}else{print "spl_autoload_  autoload: try to load $className | $classId |\n";if ( false ===  include($realPath))print "spl_autoload_  autoload:$className | $classId | failed to be loaded\n";elseprint "spl_autoload_  autoload:$className | $classId | is loaded\n";}}
});

这篇关于PHP spl_autoload和class_exsits使用技能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1011150

相关文章

Python并行处理实战之如何使用ProcessPoolExecutor加速计算

《Python并行处理实战之如何使用ProcessPoolExecutor加速计算》Python提供了多种并行处理的方式,其中concurrent.futures模块的ProcessPoolExecu... 目录简介完整代码示例代码解释1. 导入必要的模块2. 定义处理函数3. 主函数4. 生成数字列表5.

Python中help()和dir()函数的使用

《Python中help()和dir()函数的使用》我们经常需要查看某个对象(如模块、类、函数等)的属性和方法,Python提供了两个内置函数help()和dir(),它们可以帮助我们快速了解代... 目录1. 引言2. help() 函数2.1 作用2.2 使用方法2.3 示例(1) 查看内置函数的帮助(

Linux脚本(shell)的使用方式

《Linux脚本(shell)的使用方式》:本文主要介绍Linux脚本(shell)的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录概述语法详解数学运算表达式Shell变量变量分类环境变量Shell内部变量自定义变量:定义、赋值自定义变量:引用、修改、删

Java使用HttpClient实现图片下载与本地保存功能

《Java使用HttpClient实现图片下载与本地保存功能》在当今数字化时代,网络资源的获取与处理已成为软件开发中的常见需求,其中,图片作为网络上最常见的资源之一,其下载与保存功能在许多应用场景中都... 目录引言一、Apache HttpClient简介二、技术栈与环境准备三、实现图片下载与保存功能1.

Python中使用uv创建环境及原理举例详解

《Python中使用uv创建环境及原理举例详解》uv是Astral团队开发的高性能Python工具,整合包管理、虚拟环境、Python版本控制等功能,:本文主要介绍Python中使用uv创建环境及... 目录一、uv工具简介核心特点:二、安装uv1. 通过pip安装2. 通过脚本安装验证安装:配置镜像源(可

LiteFlow轻量级工作流引擎使用示例详解

《LiteFlow轻量级工作流引擎使用示例详解》:本文主要介绍LiteFlow是一个灵活、简洁且轻量的工作流引擎,适合用于中小型项目和微服务架构中的流程编排,本文给大家介绍LiteFlow轻量级工... 目录1. LiteFlow 主要特点2. 工作流定义方式3. LiteFlow 流程示例4. LiteF

使用Python开发一个现代化屏幕取色器

《使用Python开发一个现代化屏幕取色器》在UI设计、网页开发等场景中,颜色拾取是高频需求,:本文主要介绍如何使用Python开发一个现代化屏幕取色器,有需要的小伙伴可以参考一下... 目录一、项目概述二、核心功能解析2.1 实时颜色追踪2.2 智能颜色显示三、效果展示四、实现步骤详解4.1 环境配置4.

使用jenv工具管理多个JDK版本的方法步骤

《使用jenv工具管理多个JDK版本的方法步骤》jenv是一个开源的Java环境管理工具,旨在帮助开发者在同一台机器上轻松管理和切换多个Java版本,:本文主要介绍使用jenv工具管理多个JD... 目录一、jenv到底是干啥的?二、jenv的核心功能(一)管理多个Java版本(二)支持插件扩展(三)环境隔

SQL中JOIN操作的条件使用总结与实践

《SQL中JOIN操作的条件使用总结与实践》在SQL查询中,JOIN操作是多表关联的核心工具,本文将从原理,场景和最佳实践三个方面总结JOIN条件的使用规则,希望可以帮助开发者精准控制查询逻辑... 目录一、ON与WHERE的本质区别二、场景化条件使用规则三、最佳实践建议1.优先使用ON条件2.WHERE用

Java中Map.Entry()含义及方法使用代码

《Java中Map.Entry()含义及方法使用代码》:本文主要介绍Java中Map.Entry()含义及方法使用的相关资料,Map.Entry是Java中Map的静态内部接口,用于表示键值对,其... 目录前言 Map.Entry作用核心方法常见使用场景1. 遍历 Map 的所有键值对2. 直接修改 Ma