📜  PHP | die() 和 sleep() 函数

📅  最后修改于: 2022-05-13 01:56:39.910000             🧑  作者: Mango

PHP | die() 和 sleep() 函数

死()

die()是PHP中的一个内置函数。它用于打印消息并退出当前的PHP脚本。它相当于PHP中的exit()函数。句法 :

die($message)

参数:该函数只接受一个参数,并且不是强制传递的。

  • $message :此参数表示退出脚本时要打印的消息。

返回值:它没有返回值,但在退出脚本时打印给定的消息。

例子 :

Input : die("code ends here")
Output : code ends here

Here, die() function ends the 
script with a message "code
ends here "

适用版本:该函数适用于所有PHP4及以后的版本。

程序 :

PHP


PHP


输出 :

Unable to connect to given site.

睡觉()

sleep()是PHP中的内置函数。它用于将程序的执行延迟给定的秒数。

句法 :

int sleep(int $seconds)

参数:此函数只接受一个参数,并且必须传递。

  • $seconds :此参数表示延迟时间,以秒为单位。

返回值:成功时返回零,错误时返回 FALSE。如果调用被信号中断,则此函数返回一个非零值。

错误/异常:当秒数为负数时,此函数生成 E_WARNING。

适用版本:此函数适用于PHP 4、 PHP 5、 PHP 7。

程序 :

PHP


输出 :

01:07:16
01:07:21

请注意,暂停(睡眠)之后的计时比暂停(睡眠)之前的计时多 5 秒。

参考资料: 函数 : PHP 。 PHP http:// PHP.net/manual/en/函数.sleep。 PHP

让我们以表格形式查看这两个函数-:

 die() Functionsleep() Function
1.The die() function is an alias of the exit() functionThe sleep() function is used to delay the execution of the script some time.
2.It takes a parameter as a NumberIt takes a parameter as a Number ( Time in seconds )
3.It does not have any return valueThe number in Parameter cannot be negative it will also be positive
4.It is supported in PHP version 4+It returns a value that is True or False
5.The die() function is used to print the message.It is supported in PHP version 4+