Download the PHP package dida/autoloader without Composer
On this page you can find all versions of the php package dida/autoloader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download dida/autoloader
More information about dida/autoloader
Files in dida/autoloader
Download dida/autoloader
More information about dida/autoloader
Files in dida/autoloader
Vendor dida
Package autoloader
Short Description A class autoloader
License MIT
Homepage https://github.com/zeupin/dida-autoloader
Package autoloader
Short Description A class autoloader
License MIT
Homepage https://github.com/zeupin/dida-autoloader
Please rate this library. Is it a good library?
Informations about the package autoloader
Autoloader
Autoloader
是一个强大的类载入器。它是 Dida 框架 的一部分。
特点
- 轻量级,仅有一个独立的 PHP 文件,方便随处调用。
- 支持四种加载模式: PSR-4, PSR-0, Classmap, Alias.
- 可以方便灵活地直接加载一些尚处于开发状态或者测试状态的类。这些类因为还没有正式发布到 packagist,如果用 composer 模式处理很繁琐。
- MIT 版权协议,免费商用。
安装
方法 1: (推荐)下载最新的 Autoloader.php 文件,然后直接在需要的地方引入它。
下载网址如下:
然后在你的项目中直接 include 进去,举例如下:
推荐采用这种方式,AutoLoad 的使用流程清晰明了。
方法 2: 用 Composer 安装。
如果你是用这个方式调用本类的话,尤其需要注意查找未知类的匹配优先顺序问题。
推荐方法 1 而不是方法 2 的原因
方法 1 和方法 2 的主要区别在于 搜索的优先顺序 :
- 用方法 1,先搜
Dida\AutoLoader
的定义,找不到再去composer.json
的定义里面搜。 - 用方法 2,先搜
composer.json
的定义里面搜,找不到再去Dida\AutoLoader
的定义里面搜。
在实际项目中,想使用 AutoLoader
的目的,绝大多数都是要使用自定义的类,而不是 Composer 的 vendor 里面的库,所以用方法 1 能更好达成此目的。
API
初始化
四种匹配模式
工具函数
用法
如果是采用 Classmap 匹配模式时,相应的 mapfile 文件的示例如下:
作者
鸣谢
- 宙品公司,Zeupin LLC , 尤其是 Dida 框架团队
版权声明
版权所有 (c) 上海宙品信息科技有限公司。
Copyright (c) Zeupin LLC. http://zeupin.com
源代码采用 MIT 授权协议。
Licensed under The MIT License.
如需在您的项目中使用,必须保留本源代码中的完整版权声明。
Redistributions of files MUST retain the above copyright notice.
All versions of autoloader with dependencies
PHP Build Version
Package Version
Requires
php Version
^5.4 || ^7.0
The package dida/autoloader contains the following files
Loading the files please wait ....