在PHP中,可以使用include
或require
語句來引用其他PHP文件。
include
語句用于引入一個文件,如果引入的文件不存在或出錯,腳本會繼續執行。
<?php
include 'file.php'; // 引入file.php文件
?>
require
語句也用于引入一個文件,但如果引入的文件不存在或出錯,腳本會立即終止執行。
<?php
require 'file.php'; // 引入file.php文件
?>
另外,還可以使用include_once
或require_once
語句來引入一個文件,這些語句在引入同一個文件時只會引入一次,避免重復引入。
<?php
include_once 'file.php'; // 引入file.php文件,只會引入一次
require_once 'file.php'; // 引入file.php文件,只會引入一次
?>