每当需要终止当前脚本以及 PHP 中的消息时,我们都会使用 PHP 中的一个名为 exit 函数的内置函数,虽然 exit 函数用于终止当前脚本,但它不会中断对象析构函数和关闭函数被执行,退出函数采用一个参数,即消息,其中消息表示退出函数终止当前脚本期间要显示的消息,或者该消息也可以是终止期间的状态号通过 exit 函数执行脚本。
广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
语法:
exit(message)
哪里,
该消息表示在退出函数终止当前脚本期间要显示的消息,或者该消息也可以是在退出函数终止脚本期间的状态号。
让我们讨论几个例子。
PHP 程序来说明退出函数的工作原理,我们尝试通过 PHP 程序连接到网站,如果无法连接,则使用退出函数退出脚本并显示错误消息:
代码:
<html> <body> <?php #a variable called website is used to store the URL of the website that is to be connected. $website = "https://www.google.com/"; #fopen function is used in read mode to read the contents of the website fopen($website,"r") #in case if the program is unable to connect to the website and read the contents of the website, the current script is terminated along with an error message using exit function or exit("Unable to connect to the website: $website "); ?> </body> </html>
输出:
在上面的程序中,使用了一个名为 website 的变量来存储要连接的网站的 URL。然后使用fopen函数以read模式打开网站,读取网站内容。如果程序无法连接网站或失败
读取网站的内容,然后在使用退出函数终止脚本时显示错误消息,该函数在屏幕上显示为输出。输出如上面的快照所示。
PHP 程序来说明退出函数的工作原理,我们尝试通过 PHP 程序连接到网站,如果无法连接,则使用退出函数退出脚本并显示错误消息:
代码:
<html> <body> <?php #a variable called website is used to store the URL of the website that is to be connected. $website = "https://www.facebook.com/"; #fopen function is used in read mode to read the contents of the website fopen($website,"r") #in case if the program is unable to connect to the website and read the contents of the website, the current script is terminated along with an error message using exit function or exit("Unable to connect to the website: $website "); ?> </body> </html>
输出:
在上面的程序中,使用了一个名为 website 的变量来存储要连接的网站的 URL。然后使用fopen函数以read模式打开网站,读取网站内容。如果程序无法连接到网站或无法读取网站内容,则会在使用退出函数终止脚本时显示错误消息,该函数在屏幕上显示为输出。
输出如上面的快照所示。
PHP 程序来说明退出函数的工作原理,我们尝试通过 PHP 程序指定文件位置的路径来打开文件,如果无法打开文件,则退出脚本并显示错误消息退出功能的使用:
代码:
<html> <body> <?php #a variable called filepath is used to store the path to the location of the file that is to be opened. $filepath = "C:/Users/admin/Desktop/check"; #fopen function is used in read mode to read the contents of the file present at the location specified fopen($filepath, "r") #in case if the program is unable to open the file present at the location specified and read the contents of the file, the current script is terminated along with an error message using exit function or exit("Unable to open the file present at the location $filepath"); ?> </body> </html>
输出:
在上面的程序中,使用了一个名为 filepath 的变量来存储要打开的文件位置的路径。然后使用fopen函数以读取模式打开文件,从指定文件位置的路径读取文件内容。如果程序无法打开文件路径指定位置处的文件,程序将通过使用退出函数来终止显示错误消息,该函数在屏幕上显示为输出。输出如上面的快照所示。
在本文中,我们通过编程示例了解了 PHP 中退出函数的定义、语法、退出函数的工作原理及其输出。
以上是PHP退出的详细内容。更多信息请关注PHP中文网其他相关文章!