前提・実現したいこと
PHPのjsonファイルを読み込み、出力する際に必要な部分のみを出力したいのです
{"apple":"りんご","orange":"オレンジ","melon":"メロン","pineapple":"パイナップル","Strawberry":"ストロベリー"}
ここからorangeとmelionを抜かして、
{"apple":"りんご","pineapple":"パイナップル","Strawberry":"ストロベリー"}
と出力させるにはどうしたらいいのでしょうか?
該当のソースコード
php
1 2$fruits=file_get_contents("****.json"); 3// ****.jsonの中身→ {"apple":"りんご","orange":"オレンジ","melon":"メロン","pineapple":"パイナップル","Strawberry":"ストロベリー"} 4echo $fruits; 5unset($fruits["orange"]);//unsetは不可能 6unset($fruits["melon"]); 7echo $fruits;
回答1件
あなたの回答
tips
プレビュー