HTML文件中的链接:
<a href="<?= Config::get('URL') . 'profile/showProfile/' . $user->user_id; ?>">Profile</a>
工作!
PHP文件中的相同链接:
echo "<a href='"<?= Config::get('URL') . 'profile/showProfile/' . $user->user_id; ?>"'>Profile</a>";
不起作用!
我做错了什么?
答案 0 :(得分:3)
当您已经作为PHP代码执行时,您不需要包含<?=
。
echo "<a href='" . Config::get('URL') . 'profile/showProfile/' . $user->user_id . "'>Profile</a>";
答案 1 :(得分:0)
试试这个
$url = Config::get('URL');
echo "<a href='".$url. 'profile/showProfile/'.$user->user_id."'>Profile</a>";