在json url中调用php函数?

时间:2015-03-05 19:48:44

标签: php json wordpress instagram-api

这可能是一个非常愚蠢的问题,但我对此有点新意,所以请帮助我。我使用Instagram API编写了一个迷你代码,使用位置ID加载来自特定位置的照片。现在我想要实现的是将这个用于一个wordpress网站我建立列出一些酒店和餐馆。我已将位置ID定义为自定义字段,因此我需要使用以下代码来调用它:

<?php echo get_post_meta($post->ID, 'Instagram', true); ?>

我打电话给照片的网址如下:

<?php $result = fetchData("https://api.instagram.com/v1/locations/LOCATION-ID-HERE/media/recent/?access_token={$accessToken}&count=6");?>

如果我手动插入位置ID,则上述代码有效。我想要实现的是将上面的代码插入&#34; location-id-here&#34;部分。我想这很简单,但我有点困惑,因为它们都是php函数。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

您在fetchData()中放置的参数只是一个字符串,因此您可以使用.运算符将另一个函数的输出连接到该字符串中:

<?php 
$result = fetchData("https://api.instagram.com/v1/locations/" . get_post_meta($post->ID, 'Instagram', true) . "/media/recent/?access_token={$accessToken}&count=6");
?>