@H_404_0@分享下PHP return语句的另一个作用,在bbPress的代码中看到的一个奇葩使用方法。
@H_404_0@一直以为,return只能出现在函数中,直到看了bbPress的代码:
<div class="jb51code">
<pre class="brush:PHP;">
<?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' );
} // www.jb51.cc
return;
}