Home > Backend Development > PHP Tutorial > spl_autoload_register() 第三个参数是什么意思?

spl_autoload_register() 第三个参数是什么意思?

WBOY
Release: 2016-06-23 13:25:30
Original
1029 people have browsed it

spl_autoload_register()
 第三个参数如果是 true, 会添加函数到队列之首,而不是队列尾部.

这段话到底什么意思?及具体用途, 求高手回答系,谢谢.


回复讨论(解决方案)

spl_autoload_register 函数的功能是注册 自动加载类的函数
spl_autoload_register 可以多次执行,被注册的函数将形成一个队列逐个执行,直至加载到或最终失败
spl_autoload_register 的第三个参数决定了被注册函数在队列中的位置,从而决定了执行的次序
这就是说:可以控制最后注册的函数被首先执行,这样你就有了用新模块替换掉旧模块的机会

控制注册的次序,使后面的可以覆盖前面的。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template