我想知道在下面的情況下哪一個更好的選擇:PHP - 退出還是哪個更好?
在PHP腳本中,如果$fileSize
變量大於100,我停止腳本;
案例一:
<?php
if ($fileSize > 100)
{
$results['msg'] = 'fileSize is too big!';
echo json_encode($results);
exit();
}
案例二:
<?php
if ($fileSize > 100)
{
$results['msg'] = 'fileSize is too big!';
exit(json_encode($results));
}
案例三:
<?php
if ($fileSize > 100)
{
$results['msg'] = 'fileSize is too big!';
return(json_encode($results));
}
其中的三(3)以上選項,是最好的?