91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中如何引入文件?

發布時間:2020-05-19 15:03:11 來源:億速云 閱讀:252 作者:Leah 欄目:編程語言

php中如何引入文件?相信很多新手都還沒學會這個技能,為此給大家總結了這篇關于php引入文件的文章,話不多說,一起往下看吧。

PHP中引入文件的方法有:include、require、include_once、require_once。

區別介紹:

include和require

include有返回值,而require沒有返回值。

include在加載文件失敗時,會生成一個警告(E_WARNING),在錯誤發生后腳本繼續執行。所以include用在希望繼續執行并向用戶輸出結果時。

//test1.php
<?php
include './tsest.php';
echo 'this is test1';
?>

//test2.php
<?php
echo 'this is test2\n';
function test() {
    echo 'this is test\n';
}
?>

//結果:
this is test1

require在加載失敗時會生成一個致命錯誤(E_COMPILE_ERROR),在錯誤發生后腳本停止執行。一般用在后續代碼依賴于載入的文件的時候。

//test1.php
<?php
require './tsest.php';
echo 'this is test1';
?>

//test2.php
<?php
echo 'this is test2\n';
function test() {
    echo 'this is test\n';
}
?>

結果:

php中如何引入文件?

include和include_once

include載入的文件不會判斷是否重復,只要有include語句,就會載入一次(即使可能出現重復載入)。而include_once載入文件時會有內部判斷機制判斷前面代碼是否已經載入過。

這里需要注意的是include_once是根據前面有無引入相同路徑的文件為判斷的,而不是根據文件中的內容(即兩個待引入的文件內容相同,使用include_once還是會引入兩個)。

//test1.php
<?php
include './test2.php';
echo 'this is test1';
include './test2.php';
?>

//test2.php
<?php
echo 'this is test2';
?>

//結果:
this is test2this is test1this is test2


//test1.php
<?php
include './test2.php';
echo 'this is test1';
include_once './test2.php';
?>

//test2.php
<?php
echo 'this is test2';
?>

//結果:
this is test2this is test1


//test1.php
<?php
include_once './test2.php';
echo 'this is test1';
include './test2.php';
?>

//test2.php
<?php
echo 'this is test2';
?>

//結果:
this is test2this is test1this is test2


//test1.php
<?php
include_once './test2.php';
echo 'this is test1';
include_once './test2.php';
?>

//test2.php
<?php
echo 'this is test2';
?>

//結果:
this is test2this is test1

require和require_once:同include和include_once的區別相同。

以上就是php引入文件的方法,圖文詳解容易學習,配合代碼閱讀理解效果更佳,非常適合初學者入門,如果想了解更多相關內容,歡迎關注億速云行業資訊!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莱西市| 秭归县| 谢通门县| 沙洋县| 灵川县| 兴仁县| 遵义县| 临沧市| 石阡县| 云浮市| 南安市| 丹江口市| 锡林浩特市| 五原县| 东海县| 临漳县| 九龙城区| 米易县| 温州市| 吴忠市| 汶上县| 府谷县| 青田县| 安龙县| 明星| 无为县| 博兴县| 万山特区| 公主岭市| 南丰县| 威海市| 灵山县| 巴东县| 青岛市| 宣城市| 海伦市| 张家口市| 临猗县| 白水县| 临湘市| 保德县|