PHP exit() 函数
PHP exit() 函数
实例
输出一条消息,并退出当前脚本:
<?php
$site = "http://www.w3cschool.cc/";
fopen($site,"r")
or exit("Unable to connect to $site");
?>
$site = "http://www.w3cschool.cc/";
fopen($site,"r")
or exit("Unable to connect to $site");
?>
定义和用法
exit() 函数输出一条消息,并退出当前脚本。
该函数是 die() 函数的别名。
语法
exit(message)
参数 | 描述 |
---|---|
message | 必需。规定在退出脚本之前写入的消息或状态号。状态号不会被写入输出。 |
技术细节
返回值: | 没有返回值。 |
---|---|
PHP 版本: | 4+ |
PHP Misc 参考手册
相关文章
- PHP 语法
- PHP 常量
- PHP 字符串
- PHP If Else 语句
- PHP 面向对象
- PHP 包含文件 include 和 require 语句
- PHP array_change_key_case() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_key() 函数
- PHP array_pad() 函数
- PHP array_unique() 函数
- PHP current() 函数
- PHP end() 函数
- PHP krsort() 函数
- PHP natsort() 函数
- PHP reset() 函数
- PHP sizeof() 函数
- PHP 5 Array 函数
- PHP Filter 函数