从php上的变量获取链接

时间:2012-03-29 21:36:36

标签: php socialengine

我在Social Engine 4中有一个变量,我想显示它出现的文本结果

$avatar = $this->itemPhoto($this->viewer(), 'thumb.icon');

变量$ avatar包含指向图像的链接,该图像存储在服务器上,并带有DB中的链接。我想看到的是它返回的链接文本。任何建议

由于

1 个答案:

答案 0 :(得分:1)

放手一搏:

ob_start();
$this->itemPhoto($this->viewer(), 'thumb.icon');
$avatar = ob_get_clean();

var_dump( $avatar );