PHP function to build query string from array

后端 未结 5 504
暖寄归人
暖寄归人 2020-11-28 20:55

I\'m looking for the name of the PHP function to build a query string from an array of key value pairs. Please note, I am looking for the built in PHP function to d

5条回答
  •  忘掉有多难
    2020-11-28 21:20

    Implode will combine an array into a string for you, but to make an SQL query out a kay/value pair you'll have to write your own function.

提交回复
热议问题