Autoload is provided in PHP to help us conveniently include files, but autoload is not able to handle all situations as imagined. Today we will record some of the problems with autoload that we encountered a few days ago.
Why use Autoload
When using classes in PHP, we must load them before use, whether through require or include, but there will be two problems that affect our decision to load.
The first is that I don’t know where this class file is stored, and the other is that I don’t know when I need to use this file. Especially when there are a lot of project files, it is impossible to write a long string of require at the beginning of each file....
After PHP5, we can solve this problem through __autoload. And after PHP5.1, spl_autoload_register() is also provided to provide a more complete loading mechanism.
After reading the article Autoloading in PHP, I understand the loading mechanism of Autoload. When a class is instantiated through new, PHP will load the corresponding file through the defined __autoload function. If this class file uses If extends or implements needs to use other class files, PHP will re-run autoload to search and load the class files. If two requests for the same class file occur, an error will be reported. The author of the original article provided three interesting examples to illustrate this problem, which can be viewed by downloading the source code here.
Generally, there are many ways to solve the problem of finding files in the corresponding location when loading. The most commonly used one is to specify a specific naming standard.
Zend’s method
zend recommends one of the most popular methods, including the path in the file name. For example, the following example:
// Main.class
function __autoload($class_name) {
$path = str_replace('_', DIRECTORY_SEPARATOR, $class_name);
require_once $path.'.php';
}
$temp = new Main_Super_Class(); All underscores will be replaced with separators in the path. In the above example, the Main/Super/Class.php file will be reached
The disadvantage of this method is that during the coding process, we must clearly know where the code file should be, and because
The file path is hard-coded in the class name. If we need to modify the folder structure, we must manually modify all class names.
'Include All' method
If you are in a development environment and don’t care much about speed, it is very convenient to use this method. By placing all class files in one or several specific folders, and then traversing to find and load them.
For example:
$arr = array (
'Project/Classes',
'Project/Classes/Children',
'Project/Interfaces'
);
foreach($arr as $dir) {
$dir_list = opendir($dir);
while ($file = readdir($dir_list)) {
$path = $dir.DIRECTORY_SEPARATOR.$file;
if(in_array($file, array('.', '..') ) || is_dir($path))
continue;
if (strpos($file, ".class.php"))
require_once $path;
}
}
?>
Associating files and locations
Another method is to establish an associated configuration file between the class file and its location, for example:
// configuration.php
array_of_associations = array(
'MainSuperClass' = 'C:/Main/Super/Class.php',
'MainPoorClass' = 'C:/blablabla /gy.php'
);
The file called
require 'autoload_generated.php';
function __autoload($className) {
global $autoload_list;
require_once $autoload_list[$className];
}
$x = new A();
?>
Of course, if there are too many files, it will be a troublesome thing to maintain, but which one is better than hard-coding the location in the class name?
Of course we don’t want to maintain this list manually, so we can use automatic generation of this file to achieve this. The corresponding file can be phpxmljson and so on. The author of the original article implemented such a tool. If you think about it carefully, this is not difficult to implement. The author of the original article even developed a small Autoload framework, which is worth learning.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
