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.
我生成了一个 JSON 文件,它的格式正确,就像我从 MySQL 数据库中导出它一样。现在我需要把它放回去:-)
我想阅读如何做到这一点,所以如果有一个好的链接,我欢迎它。我用过这个词
php - 将 JSON 文件导入 MySQL 数据库的脚本
在谷歌和其他人喜欢它,但我没有运气。另外,如果我导入一个文件并且记录已经存在,我该如何处理重复问题?我可以让它自动覆盖吗?
我从 iOS 应用程序上传它,所以我看不到 php 文件在工作。
您可以使用json_decode
json_decode
json_decode($json_from_ios_app, true)
json_decode将返回关联的数组。基于此结构,构造 SQL 查询。