我可以用逗號分隔連接列,但是如果在第二列是空的,如何刪除逗號? 在下面,我有2列我想加入otot2和otot3 1.如何在otot2後不顯示逗號如果otot3 null? 2.如何otot2和otot 3 null如何不顯示任何逗號? 3. otot2和otot3靈活(並不總是有數據)用逗號分隔的列
這裏我對輸出的查詢PHP代碼:
if(mysqli_num_rows($hasil) > 0)
{
$response = array();
while($data = mysqli_fetch_array($hasil))
{
$h['main muscle'] = $data['otot1'];
$h['other muscle'] = $data['otot2'].', '.$data['otot3'];
array_push($response, $h);
}
$response["success"];
echo json_encode($response);
如果(ISNULL($數據[ 'otot3']))其他.. – 2016-04-27 06:05:11
@Dagon您能不能給一個完整的代碼? –