Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Created January 22, 2014 10:54
Show Gist options
  • Select an option

  • Save sdeluce/8556850 to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/8556850 to your computer and use it in GitHub Desktop.
Parse Json
<?php
$json ='{"id":0,"name":"Ashley","surname":"Ford","Website":"http://papermashup.com"} ';
$array=json_decode($json);
// print the array
print_r($array);
echo $array->name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment