在PHP中,可以使用require
或include
關(guān)鍵字來(lái)引用文件。
require
:在引用文件時(shí),如果文件不存在或引用失敗,會(huì)導(dǎo)致程序終止執(zhí)行。require 'file.php';
include
:在引用文件時(shí),如果文件不存在或引用失敗,會(huì)給出一個(gè)警告,但程序會(huì)繼續(xù)執(zhí)行。include 'file.php';
require_once
和include_once
:與require
和include
相似,但它們會(huì)檢查引用的文件是否已經(jīng)被引用過(guò),若已經(jīng)引用過(guò),則不會(huì)重復(fù)引用。require_once 'file.php';
include_once 'file.php';