标题: PHP return语句
作者: Demon
链接: https://demon.tw/programming/php-return-statement.html
版权: 本博客的所有文章,都遵守“署名-非商业性使用-相同方式共享 2.5 中国大陆”协议条款。
一直以为,return只能出现在函数中,直到看了bbPress的代码:
<?php require_once('./bb-load.php'); bb_repermalink(); // The magic happens here. if ( $self ) { if ( strpos($self, '.php') !== false ) { require($self); } else { require( BB_PATH . 'profile-base.php' ); } return; }
难道 return 还能出现在函数之外?这在C语言是无法想象的。
查了一下 PHP 手册:如果在一个函数中调用 return 语句,将立即结束此函数的执行并将它的参数作为函数的值返回。如果在全局范围中调用,则当前脚本文件中止运行。
唉,受C语言的毒害太深了。
赞赏微信赞赏支付宝赞赏
随机文章:
php的return 还可以作为include或require的返回值
a.php
<?php
return "a.php";
b.php
<?php
$astr=include("a.php");
var_dump($astr);