我的功能
public static function getArtistCount()
{
global $DB;
$sql = "SELECT COUNT(*) AS Count FROM tbl_artists";
if (!$DB->Query($sql)) {
return false;
}
if (!$rows = $DB->RecordsArray(1)) {
return false;
}
$count= $rows[0]['Count'];
return $count;
}
我也有结果变量来调用休息和存储数据
$result = Utility_API::callREST($params , 'Artist/get')
我的 REST 服务是
public function get()
{
$status = false;
$result = array();
if ($result = Data_Artist::getArtistCount()) {
$status = true;
$data = $result->toArray();
}
return $this->generateReturn($status, $data);
}
我需要知道如何获取计数,还需要知道在不需要或不传递参数时如何获取函数结果。