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

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(