Jump to content

PHP JSON_DECODE()


Danny620

Recommended Posts

{   "data": [      {         "name": "Social Media Manager",         "category": "Local business",         "id": "164691116879928"      },      {         "name": "Support! Muffin the fool (Oldham Chronicle FAKE)",         "category": "Community",         "id": "181377645219010"      },      {         "name": "Northplanet",         "category": "Local business",         "id": "132483460132622"      },      {         "name": "Social Media Manager",         "category": "Application",         "id": "102650199811234"      },      {         "name": "Top Ten Things To Remember Me By!",         "category": "Application",         "id": "375102030458"      }   ]}

 

how would i use $user = json_decode($json) to access the value of the first id like $user->id(0); but that dose'tn work!

Link to comment
https://forums.phpfreaks.com/topic/227356-php-json_decode/
Share on other sites

<?php 
$json = '{   "data": [      {         "name": "Social Media Manager",         "category": "Local business",         "id": "164691116879928"      },      {         "name": "Support! Muffin the fool (Oldham Chronicle FAKE)",         "category": "Community",         "id": "181377645219010"      },      {         "name": "Northplanet",         "category": "Local business",         "id": "132483460132622"      },      {         "name": "Social Media Manager",         "category": "Application",         "id": "102650199811234"      },      {         "name": "Top Ten Things To Remember Me By!",         "category": "Application",         "id": "375102030458"      }   ]}';
$array = json_decode($json, true);
var_dump($array);

 

this should easily help you figure it out yourself

Link to comment
https://forums.phpfreaks.com/topic/227356-php-json_decode/#findComment-1172695
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.