regresar por enviar ejemplo php json

por - json.stringify php



Obtiene el objeto JSON desde la URL (7)

Necesitas leer acerca de la función json_decode http://php.net/manual/en/function.json-decode.php

Aqui tienes

$json = ''{"expires_in":5180976,"access_token":"AQXzQgKTpTSjs-qiBh30aMgm3_Kb53oIf-VA733BpAogVE5jpz3jujU65WJ1XXSvVm1xr2LslGLLCWTNV5Kd_8J1YUx26axkt1E-vsOdvUAgMFH1VJwtclAXdaxRxk5UtmCWeISB6rx6NtvDt7yohnaarpBJjHWMsWYtpNn6nD87n0syud0"}''; //OR $json = file_get_contents(''http://someurl.dev/...''); $obj = json_decode($json); var_dump($obj-> access_token); //OR $arr = json_decode($json, true); var_dump($arr[''access_token'']);

Tengo una URL que devuelve un objeto JSON como este:

{ "expires_in":5180976, "access_token":"AQXzQgKTpTSjs-qiBh30aMgm3_Kb53oIf-VA733BpAogVE5jpz3jujU65WJ1XXSvVm1xr2LslGLLCWTNV5Kd_8J1YUx26axkt1E-vsOdvUAgMFH1VJwtclAXdaxRxk5UtmCWeISB6rx6NtvDt7yohnaarpBJjHWMsWYtpNn6nD87n0syud0" }

Quiero obtener el valor access_token . Entonces, ¿cómo puedo recuperarlo a través de PHP?


Puede usar la función json_decode de PHP:

$url = "http://urlToYourJsonFile.com"; $json = file_get_contents($url); $json_data = json_decode($json, true); echo "My token: ". $json_data["access_token"];


file_get_contents() no está obteniendo los datos de la url, luego probé curl y está funcionando bien.


$ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, ''url_here''); $result = curl_exec($ch); curl_close($ch); $obj = json_decode($result); echo $obj->access_token;


$json = file_get_contents(''url_here''); $obj = json_decode($json); echo $obj->access_token;

Para que esto funcione, file_get_contents requiere que allow_url_fopen esté habilitado. Esto se puede hacer en tiempo de ejecución incluyendo:

ini_set("allow_url_fopen", 1);

También puede usar curl para obtener la url. Para usar curl, puede usar el ejemplo que se encuentra here :

$ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, ''url_here''); $result = curl_exec($ch); curl_close($ch); $obj = json_decode($result); echo $obj->access_token;


$url = ''http://.../.../yoururl/...''; $obj = json_decode(file_get_contents($url), true); echo $obj[''access_token''];

Php también puede usar propiedades con guiones:

garex@ustimenko ~/src/ekapusta/deploy $ psysh Psy Shell v0.4.4 (PHP 5.5.3-1ubuntu2.6 — cli) by Justin Hileman >>> $q = new stdClass; => <stdClass #000000005f2b81c80000000076756fef> {} >>> $q->{''qwert-y''} = 123 => 123 >>> var_dump($q); class stdClass#174 (1) { public $qwert-y => int(123) } => null


// Get the string from the URL $json = file_get_contents(''https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452''); // Decode the JSON string into an object $obj = json_decode($json); // In the case of this input, do key and array lookups to get the values var_dump($obj->results[0]->formatted_address);