6.3 Return Statement
A return statement with a return value does not use parentheses "()" unless they make the return value more visible in some way. For example:
return;
return myDisk.size();
return ($size ? $size : $defaultSize);
http://www.bkjia.com/PHPjc/532591.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532591.htmlTechArticle6.3 Return statement A return statement with a return value does not use parentheses "()" unless they are in some way way to make the return value more visible. For example: return; return myDisk.size(); return ($si...