Kimonlabs JSON代码
$json_string = file_get_contents("http://www.kimonolabs.com/api/e45oypq8?apikey=XXX"); $parsed_json = json_decode($json_string); //var_dump($parsed_json->results->collection1); foreach($parsed_json->results->collection1 as $collection){ echo $collection->title->text . ''; echo $collection->title->href . ''; echo $collection->posted . ''; }
PHP重定向代码
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
我想用
替换
http://www.yoursite.com/new_page.html
$collection->title->href
但我不知道如何合并两者。
答案 0 :(得分:1)
由于使用了foreach(),我怀疑你能做到这一点......如果有多个结果,你的代码将尝试多次重定向到不同的URL(或者至少是它遇到的第一个)。
$json_string = file_get_contents("http://www.kimonolabs.com/api/e45oypq8?apikey=XXX");
$parsed_json = json_decode($json_string);
//var_dump($parsed_json->results->collection1);
foreach($parsed_json->results->collection1 as $collection){
header('Location: ' . $collection->title->href);
die();
}