gpt4 book ai didi

php - 如何使用 die() 包含文件;功能?

转载 作者:可可西里 更新时间:2023-11-01 12:27:34 25 4
gpt4 key购买 nike

file1.php 和 file2.php with die();功能。

include.php:

<? include 'file1.php';
include 'file2.php' ?>

文件1.php

<? echo 'included'; die(); ?>

文件2.php

<? echo 'not included'; die(); ?>

如何使用 die(); 包含这两个文件?功能?

最佳答案

非英语人士:

您也可以用您的母语提供您的问题,这里可能会有人为您翻译。尽最大努力用英语提问,并在下面添加您的母语。


如果想测试include是否成功,可以测试include函数本身的返回值:

// http://us3.php.net/manual/en/function.include.php Example #4
if ((include 'file1.php') != 'OK') {
die();
}

您也可以考虑 require()而不是 include() 取决于您的需要:

require() is identical to include() except upon failure it will also produce a fatal E_ERROR level error. In other words, it will halt the script whereas include() only emits a warning (E_WARNING) which allows the script to continue.

关于php - 如何使用 die() 包含文件;功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1791437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com