何時間も検索した後、私はこの質問を投稿しています。私は$responses
という変数を持っています。この変数は、次のようにエンコードされたJSONオブジェクトを出力します。JSONオブジェクトのカウント数
[
{
"notification_id": 4936,
"notification_title": "Bridge construction",
"notification_category": "Activities of extraterritorial organizations",
"notification_posted_date": "19/09/16",
"notification_time_left": "2016/10/11 12:45:00",
"notification_by_company": "The Media Company"
}
]
複数のオブジェクトがあり、以下のコードを使用してその数もカウントしようとしています。
echo json_encode($responses);
echo count($responses);
しかし、何らかの理由で動作しません。私もこれを試しました:
$JsonDecode = json_decode($responses, true);
echo $JsonDecode;
主な問題は、JSONの印刷とオブジェクトのカウントの取得です。どんな助けでも大歓迎です。 $responses
は{...},{...}....
を以下の場合は
2番目のコードで 'count'について忘れました – nospor
json全体を提供できますか? 4936、 「notification_title:これまでの完全なJSONレスポンスですが、コースを外れ、それはオブジェクトが、私は完全にJSONレスポンス [ { 「notification_id」を投稿することはできませんが減少することとにより、ワード限度に、同時に増加することができます – Archish
":"橋の建設 "、 " notification_category ":"外部の行政機関と団体の活動 "、 " notification_posted_date ":" 19/09/16 "、 " notification_time_left ":" 2016/10/11 12:45:00 "、 " notification_by_company ":" The Media Company " } ] –