如何从变量设置特色图像

时间:2013-04-18 作者:Jerry

我有一张图片通过变量{$poster}显示在我的帖子上。如何将此变量设置为特征图像?

这是我的帖子:

<div class="poster"><img src="{$poster}" height="325" width="225" border="0" alt=" " />

1 个回复
SO网友:Marc Wiest

据我所知,您只能从运行PHP。php文件,而不是。html等,所以你应该确保你的答案是正确的。但你也可以尝试使用global $poster; 你在哪里定义它,在哪里调用它。例如:inwidget.php global $poster; 并且在output.php global $poster; echo $poster;

结束

相关推荐