在我的MySQL
數據庫中我有這張表,其中包含多個藝術家。他們被放置在一個名爲formated_name
的字段中,並返回strings
,例如Lady Gaga
,迄今爲止這麼好。我想實現的是它returns
ladygaga
所以我可以在稍後使用它來爲我的url
。我的整個功能如下所示:如何返回多個字作爲一個字符串
public function artistname_get($artist_id)
{
$this->load->database();
$sql = "SELECT formated_name FROM artists WHERE artist_id = '".$artist_id."'";
$query = $this->db->query($sql);
$data = $query->result();
if($data) {
$this->response($data, 200);
} else {
$this->response(array('error' => 'Couldn\'t find any artist with that name!'), 404);
}
}
那麼我該如何實現這一目標呢?
? – dikesh
@Dikesh是的,確切的! – SHT
你可以使用PHP來做到這一點。 – dikesh