目录

PHP exit() 函数

❮ PHP 其他参考

示例

打印一条消息并退出当前脚本:

<?php
$site = "https://www.91xjr.com/";
fopen($site,"r")
or exit("Unable to connect to $site");
?>


定义和用法

exit() 函数打印一条消息并终止当前脚本。


语法

exit( message)

参数值

Parameter Description
message Required. A message or status number to print before terminating the script. A status number will not be written to the output, just used as the exit status.

技术细节

返回值: 没有什么
PHP 版本: 4+

❮ PHP 其他参考