PHP add single quotes to comma separated list

前端 未结 7 1127
逝去的感伤
逝去的感伤 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
    闹比i (楼主)
    2021-02-05 06:33

    You can set the glue to ', ' and then wrap the result in '

    $res = "'" . implode ( "', '", $array ) . "'";
    

    http://codepad.org/bkTHfkfx

提交回复
热议问题