Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 php 代码出现上述错误。我收到以下行的错误。
echo '<tr><td style="width:400px;padding:5px;"></td><td style="width:300px;padding:5px;"><img src="'.$image_folder.$value->$value->prfil_img .'" /></td></tr>';
我知道我在这里没有正确使用字符串。双引号或单引号没有正确使用。但是,我无法弄清楚。
有谁能够帮我?
这看起来不对:
$image_folder.$value->$value->prfil_img
你可能的意思是:
$image_folder . $value->prfil_img