我使用以下内容:
$fql = "SELECT
name, pic, pic_cover, start_time, end_time, location, description
FROM
event
WHERE
eid IN ( SELECT eid FROM event_member WHERE uid = 127795963908033 )
AND
start_time >= now()
ORDER BY
start_time desc";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
和
echo "<img src={$values['pic_cover']} width='600px' />";
这对图片很有用,但是当我将它更改为上面的 pic_cover 时,它返回 null。
有任何想法吗?谢谢 :)