Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在函数的末尾看到有时写“return false”也写“exit”。这两者之间的主要区别是什么?在哪种情况下需要这两种?
exit 将结束 PHP 执行,而 return 将结束函数,大多数情况下使用 return,这取决于你的情况。
return false用于函数,exit用于停止 php 脚本
return false
exit
“return”是函数的退出,“exit”是整个脚本的终止。
退出说明
退货说明
exit() 停止整个 PHP 程序并返回到操作系统。
另一方面,return 结束函数调用并返回给调用者。