LoginSignup
0
0

More than 1 year has passed since last update.

PHPでjsonを読み込んで配列化。

Last updated at Posted at 2023-03-29

メモメモ。

PHPでjsonファイルを読み込む

PHPでjsonファイルを読み込む方法は以下。

<?php
//json取得先
$json_url = dirname(__FILE__).'/../json/article.json';

//jsonを読み込み
$input_json = file_get_contents($json_url);

//json_decodeで連想配列に変換
$arrays = json_decode($input_json);
?>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0