English 中文(简体)
履历 我如何从设在加拿大的以下阵列获取个人价值观
原标题:Tumblr API How do I access the individual values from the following array in php

采用肿瘤透镜和以下代码:

$var = xhttp::toQueryArray($response[ body ]);
print_r($var);

这部插图如下:

Array ( [{"meta":{"status":200,"msg":"OK"},"response":{"user":{"name":"lukebream","likes":0,"following":8,"default_post_format":"html","blogs":[{"name":"lukebream","url":"http://lukebream.tumblr.com/","followers":5,"primary":true,"title":"Untitled","admin":true,"queue":0,"ask":false,"tweet":"N"}]}}}] => )

我如何能够接触各个要素,把它们归入变量?

这里是我完成的:

$tumblr->set_token($_SESSION[ oauth_token ], $_SESSION[ oauth_token_secret ]);
$data = array();
$data[ post ] = array();        
$response = $tumblr->fetch( http://api.tumblr.com/v2/user/info , $data);    

if($response[ successful ]) {
    echo $response[ json ][ response ][ url ];
} else {
    echo "api call failed. {$response[body]}<br><br>";
}
问题回答

你们也可以使用json_decode($str, TRUE):这将退回ARRAY,而不是一个物体,更容易与!





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签