autoload的意思|示意

美 / ɑ:tɒ'ləʊd / 英 / ɑtɒ'loʊd /

n. 自动加载[装填,装卸,上料,送料]


autoload的用法详解

英语单词autoload的用法讲解

Autoload是一个PHP函数,它允许PHP程序动态加载未引入的类的函数。它的作用是如果应用程序需要使用某个类,但又没有在当前运行的程序中引入,则autoload函数会搜索自动加载函数并调用它来加载这个类。

Autoload函数的用法很简单,只需要编写一个函数,将它注册为自动加载函数,并在需要时调用它即可。

通常,用户可以通过spl_autoload_register()函数来注册一个自动加载函数。它有两个参数:第一个是自动加载函数的名称,第二个是自动加载函数的参数。

示例代码如下:

function autoload($className){

include $className.'.php';

}

spl_autoload_register('autoload');

有了这个autoload函数,在应用程序中调用的类没有引入的时候,就可以自动调用autoload函数来加载这个类。

autoload相关短语

1、 autoload array 并往自动载入数组

2、 autoload on boot 自动加载在开机

3、 dump-autoload 打印自动加载索引

4、 AutoLoad Pro 装载最佳化软体

5、 Body Part Autoload 自动加载身体部分

6、 NZB Autoload Settings NZB 自动加载设置

autoload相关例句

Otherwise, the plugin manager class will not be able autoload your plugin!

否则, 插件管理类插件管理类将不会自动加载你的插件!

互联网

The list above constitutes at least 4 different responsibilities for your Autoload class.

上面的列表组成至少4作为你的自动加载类不同的责任。

For example, you can autoload the model and any helpers or libraries you need.

例如,您可自动加载所需的模型和任何帮助程序或库。

Otherwise, the plugin manager class will not be able to autoload your plugin!

否则,插件管理类插件管理类将不会自动加载你的插件!