PHP add single quotes to comma separated list

前端 未结 7 1128
逝去的感伤
逝去的感伤 2021-02-05 05:55

When I implode my array I get a list that looks like this:

qwerty, QTPQ, FRQO

I need to add single quotes so it looks like:

\'         


        
7条回答
  •  -上瘾入骨i
    2021-02-05 06:13

    Use ' before and after implode()

    $temp = array("abc","xyz");
    
    $result = "'" . implode ( "', '", $temp ) . "'";
    
    echo $result; // 'abc', 'xyz'
    

提交回复
热议问题