デコードしたJSONを別の関数に渡すJavaScriptのコードがあるのですが、
これをPHPで再現したいと考えています。
調べてみましたが分からなかったため、
ご指導・ご鞭撻のほど、よろしくお願いいたします。
JavaScript
1for(var i in json){ 2 message = message + json[i].account.name + "\n```" + json[i].body + "```\n"; 3 postMessage(message); 4} 5// 引用元:https://www.cg-method.com/entry/2017/03/06/080000/
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/02 05:06
2019/12/02 05:15
2019/12/02 05:41
2019/12/02 07:01
2019/12/02 07:02
2019/12/02 07:05
回答1件
0
ベストアンサー
for-in文法をそのまま真似してかきたいのかもしれませんが、
郷に入っては郷に従え、
より便利な文法があれば使うべきだと思ったりもします。
一定のデータ構造を先頭から末尾まで一つずつ順に処理するものだと察して、
だったらforeachでいいじゃないか、という考え方です。
何番目のデータを処理しているか、を意識して処理したい場合には、
引数が0,1,2って連続している前提で、count関数を使うのも手ではないかと。
json文字列をjson_decode関数でデコードするときに、
オブジェクトと配列のどちらかを選択できます。
それをforeachループで処理すればいいんじゃないかと、ひとまず思いました。
サンプルjsonデータが示されなかったので、勝手にサンプルデータを用意して、
サンプルコードを書いてみました。
オブジェクトにデコードした事例:
php
1<?php 2$json = <<<EOT 3[ 4 { 5 "age": 20, 6 "name": "Mccullough Blevins", 7 "gender": "male", 8 "company": "ARTWORLDS", 9 "email": "mcculloughblevins@artworlds.com", 10 "address": "257 Hillel Place, Yogaville, Tennessee, 5537" 11 }, 12 { 13 "age": 25, 14 "name": "Casey Meadows", 15 "gender": "female", 16 "company": "TUBESYS", 17 "email": "caseymeadows@tubesys.com", 18 "address": "886 Cropsey Avenue, Kraemer, New Jersey, 7623" 19 }, 20 { 21 "age": 27, 22 "name": "Lucinda Neal", 23 "gender": "female", 24 "company": "COMDOM", 25 "email": "lucindaneal@comdom.com", 26 "address": "802 Elton Street, Crown, Wyoming, 7838" 27 }, 28 { 29 "age": 36, 30 "name": "Effie Martinez", 31 "gender": "female", 32 "company": "ZOINAGE", 33 "email": "effiemartinez@zoinage.com", 34 "address": "435 Tompkins Avenue, Rossmore, Washington, 5586" 35 }, 36 { 37 "age": 28, 38 "name": "Rae Kirby", 39 "gender": "female", 40 "company": "ZIGGLES", 41 "email": "raekirby@ziggles.com", 42 "address": "719 Kimball Street, Muse, California, 4171" 43 } 44] 45EOT; 46$obj = json_decode($json); 47$message = ''; 48foreach ($obj as $item){ 49 $message .= $item->name . "\n```" . $item->gender . "```\n"; 50} 51echo $message;
配列にデコードした事例:
php
1<?php 2$json = <<<EOT 3[ 4 { 5 "age": 20, 6 "name": "Mccullough Blevins", 7 "gender": "male", 8 "company": "ARTWORLDS", 9 "email": "mcculloughblevins@artworlds.com", 10 "address": "257 Hillel Place, Yogaville, Tennessee, 5537" 11 }, 12 { 13 "age": 25, 14 "name": "Casey Meadows", 15 "gender": "female", 16 "company": "TUBESYS", 17 "email": "caseymeadows@tubesys.com", 18 "address": "886 Cropsey Avenue, Kraemer, New Jersey, 7623" 19 }, 20 { 21 "age": 27, 22 "name": "Lucinda Neal", 23 "gender": "female", 24 "company": "COMDOM", 25 "email": "lucindaneal@comdom.com", 26 "address": "802 Elton Street, Crown, Wyoming, 7838" 27 }, 28 { 29 "age": 36, 30 "name": "Effie Martinez", 31 "gender": "female", 32 "company": "ZOINAGE", 33 "email": "effiemartinez@zoinage.com", 34 "address": "435 Tompkins Avenue, Rossmore, Washington, 5586" 35 }, 36 { 37 "age": 28, 38 "name": "Rae Kirby", 39 "gender": "female", 40 "company": "ZIGGLES", 41 "email": "raekirby@ziggles.com", 42 "address": "719 Kimball Street, Muse, California, 4171" 43 } 44] 45EOT; 46$arr = json_decode($json, true); 47$message = ''; 48foreach ($arr as $item){ 49 $message .= $item['name'] . "\n```" . $item['gender'] . "```\n"; 50} 51echo $message;
foreachじゃなくforにした事例:
php
1<?php 2$json = <<<EOT 3[ 4 { 5 "age": 20, 6 "name": "Mccullough Blevins", 7 "gender": "male", 8 "company": "ARTWORLDS", 9 "email": "mcculloughblevins@artworlds.com", 10 "address": "257 Hillel Place, Yogaville, Tennessee, 5537" 11 }, 12 { 13 "age": 25, 14 "name": "Casey Meadows", 15 "gender": "female", 16 "company": "TUBESYS", 17 "email": "caseymeadows@tubesys.com", 18 "address": "886 Cropsey Avenue, Kraemer, New Jersey, 7623" 19 }, 20 { 21 "age": 27, 22 "name": "Lucinda Neal", 23 "gender": "female", 24 "company": "COMDOM", 25 "email": "lucindaneal@comdom.com", 26 "address": "802 Elton Street, Crown, Wyoming, 7838" 27 }, 28 { 29 "age": 36, 30 "name": "Effie Martinez", 31 "gender": "female", 32 "company": "ZOINAGE", 33 "email": "effiemartinez@zoinage.com", 34 "address": "435 Tompkins Avenue, Rossmore, Washington, 5586" 35 }, 36 { 37 "age": 28, 38 "name": "Rae Kirby", 39 "gender": "female", 40 "company": "ZIGGLES", 41 "email": "raekirby@ziggles.com", 42 "address": "719 Kimball Street, Muse, California, 4171" 43 } 44] 45EOT; 46$arr = json_decode($json, true); 47$message = ''; 48$cnt = count($arr); 49for ($i = 0; $i < $cnt; $i++){ 50 $message .= $arr[$i]['name'] . "\n```" . $arr[$i]['gender'] . "```\n"; 51} 52echo $message;
投稿2019/12/02 05:20
編集2019/12/02 05:29退会済みユーザー
総合スコア0
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/02 06:03
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。