Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不配置表的情况下以最简单的方式使用 PHP 在 MySQL 表中导入 jsonp 文件?
如果有任何现有的系统更好。
您可以只获取 json 字符串并将serialize(json_decode($jsonstring))其存储在数据库的单个列中以保留整个数组或对象及其结构,然后从您刚刚执行的查询中使用它unserialize()以将其转换回其原始状态。
serialize(json_decode($jsonstring))
unserialize()