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))それをデータベースの 1 つの列に保存して、配列またはオブジェクト全体とその構造を保持し、それをunserialize()元の状態に変換するために行うクエリから使用することができます。
serialize(json_decode($jsonstring))
unserialize()