douhao3562 2016-10-04 13:04
浏览 251
已采纳

如何通过将数组转换为JSON来保存数据库中的PHP数组?

Here is a my PHP array. I want to convert it into JSON. after a converting to JSON. than after I want to save it in database how can I achieve this?

Array
(
    [0] => 6:30pm
    [1] => 
)
Array
(
    [0] => 8:00pm
    [1] => 
)
  • 写回答

3条回答 默认 最新

  • drruhc4944 2016-10-04 13:06
    关注

    If you really need to store json in the database, you can use json_encode and json_decode.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?