例如...
public function processRowSet($rowSet, $singleRow = false){
$resultArray = array();
while($row = mysql_fetch_assoc($rowSet)){
array_push($resultArray, $row);
};
if ($singleRow === true){
return $resultArray[0];
};
return $resultArray;
}
...and then the next line continues without an issue
当我第一次开始使用 OOP PHP 时,我犯了在末尾添加分号的错误,我花了大约一个小时才弄清楚出了什么问题。