阅读量:0
在 PHP 中,exit 和 die 实际上是相同的。它们都用于终止脚本的执行,并可以选择输出一个消息。这两个函数可以互换使用,没有功能上的区别。
例如:
<?php if (!$file) { die('File not found.'); } ?>
和
<?php if (!$file) { exit('File not found.'); } ?>
在这两个示例中,如果 $file
变量是 false
,脚本将输出 “File not found.” 消息并停止执行下面的代码。这里使用 die 和 exit 效果是一样的。