所以我有一个包含所有setParams的课程
$this->setParams('matchwins', $users->getInfo($_SESSION['user']['id'], 'matchwins'));
所以我可以在我的网站上使用{matchwins}
我尝试在用户主页上执行以下语句。
<?php
$clan = $_GET["clan"];
$file = 'http://localhost/app/tpl/skins/warfare/images/clans/'. $clan .'/avatar.png';
if (file_exists($file)) {echo "<img src='http://localhost/app/tpl/skins/warfare/images/clans/'. $clan .'/avatar.png'/>";}
?>
我是PHP的新手,有谁知道出了什么问题?
答案 0 :(得分:2)
您应该使用双引号来包含变量,单引号用于保存您尝试回复的src
标记的img
属性。
echo "<img src='http://localhost/app/tpl/skins/warfare/images/clans/" . $clan . "/avatar.png'/>";