示例#1
0
 /**
  * Gets the song at the specified ID.
  *
  * @param $id
  *
  * @return null
  */
 public function GetSong($id)
 {
     $result = $this->database->Where(["id" => $id]);
     if (empty($result) == true) {
         return null;
     }
     return CherryPick::GetFirstRow($result);
 }