PHP return 关键字
定义和用法
The return
关键字结束一个函数,并可选地使用表达式的结果作为函数的返回值。
如果 return
在函数外部使用,它将停止文件中的 PHP 代码运行。如果文件是使用 include
,include_once
,require
或 require_once
包含的,表达式的结果将用作 include 语句的返回值。
相关页面
在我们的 PHP 函数教程 中了解更多函数。
❮ PHP 关键字
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]