PHP exit() 函數(shù)
PHP exit() 函數(shù)
實例
輸出一條消息,并退出當前腳本:
<?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() 函數(shù)輸出一條消息,并退出當前腳本。
該函數(shù)是 die() 函數(shù)的別名。
語法
exit(message)
參數(shù) | 描述 |
---|---|
message | 必需。規(guī)定在退出腳本之前寫入的消息或狀態(tài)號。狀態(tài)號不會被寫入輸出。 |
技術(shù)細節(jié)
返回值: | 沒有返回值。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP 語法
- PHP 常量
- PHP 字符串
- PHP If Else 語句
- PHP 面向?qū)ο?/a>
- PHP 包含文件 include 和 require 語句
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP current() 函數(shù)
- PHP end() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP reset() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP Filter 函數(shù)