PHP退出

WBOY
发布: 2024-08-29 13:10:35
原创
372 人浏览过

每当需要终止当前脚本以及 PHP 中的消息时,我们都会使用 PHP 中的一个名为 exit 函数的内置函数,虽然 exit 函数用于终止当前脚本,但它不会中断对象析构函数和关闭函数被执行,退出函数采用一个参数,即消息,其中消息表示退出函数终止当前脚本期间要显示的消息,或者该消息也可以是终止期间的状态号通过 exit 函数执行脚本。

广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

语法:

exit(message)
登录后复制

哪里,

该消息表示在退出函数终止当前脚本期间要显示的消息,或者该消息也可以是在退出函数终止脚本期间的状态号。

PHP 中 exit 函数的工作原理

  • 每当需要终止当前脚本以及 PHP 中的消息时,我们都会使用 PHP 中名为 exit 函数的内置函数。
  • 虽然 exit 函数用于终止当前脚本,但它不会中断对象析构函数并关闭函数的执行。
  • 退出函数有一个参数,即消息。
  • 参数message表示exit函数终止当前脚本时要显示的消息,或者该消息也可以是exit函数终止脚本时的状态号。

PHP 退出示例

让我们讨论几个例子。

示例#1

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>
登录后复制

输出:

PHP退出

在上面的程序中,使用了一个名为 website 的变量来存储要连接的网站的 URL。然后使用fopen函数以read模式打开网站,读取网站内容。如果程序无法连接网站或失败

读取网站的内容,然后在使用退出函数终止脚本时显示错误消息,该函数在屏幕上显示为输出。输出如上面的快照所示。

示例#2

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>
登录后复制

输出:

PHP退出

在上面的程序中,使用了一个名为 website 的变量来存储要连接的网站的 URL。然后使用fopen函数以read模式打开网站,读取网站内容。如果程序无法连接到网站或无法读取网站内容,则会在使用退出函数终止脚本时显示错误消息,该函数在屏幕上显示为输出。

输出如上面的快照所示。

示例#3

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>
登录后复制

输出:

PHP退出

在上面的程序中,使用了一个名为 filepath 的变量来存储要打开的文件位置的路径。然后使用fopen函数以读取模式打开文件,从指定文件位置的路径读取文件内容。如果程序无法打开文件路径指定位置处的文件,程序将通过使用退出函数来终止显示错误消息,该函数在屏幕上显示为输出。输出如上面的快照所示。

结论

在本文中,我们通过编程示例了解了 PHP 中退出函数的定义、语法、退出函数的工作原理及其输出。

以上是PHP退出的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
php
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板