PHP打印缩略图简单问题
我正在尝试使用 PHP 打印一些缩略图。问题是我无法获取 HTML 中 $thumbPath
的值。有一些我看不到的小错误:
for($i=1;$i<19;$i++){
$thumbPath="img/theme".$i.".jpg";
$thumbId="t".$i;
echo '<li><a href="#">';
echo '<img src=$thumbPath id=$thumbId border="none"/>';
echo '</a></li>';
}
I'm trying to print some thumbnails using PHP. The problem is that I can't get the value of $thumbPath
in the HTML. There is some little mistake that I can't see:
for($i=1;$i<19;$i++){
$thumbPath="img/theme".$i.".jpg";
$thumbId="t".$i;
echo '<li><a href="#">';
echo '<img src=$thumbPath id=$thumbId border="none"/>';
echo '</a></li>';
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
单引号中的字符串不解析变量。你要么需要这样做:
要么这样:
Strings in single quotes do not parse variables. You either need to do this:
or this:
单引号括起来的变量不会计算为 php 分配的值。
翻译过来,使用 echo '$thumbPath' 与 echo "$thumbPath" 不同。
Variables enclosed in single quotes don't evaluate to php assigned values.
Translated, using echo '$thumbPath' isn't the same as echo "$thumbPath".
更改
为
change
to
php 中的单引号不计算嵌入变量。
希望有帮助。
Single quotes in php don't evaluate embedded variables.
Hope it helps.
就我个人而言,我会执行以下操作:
显然,我将可选位包装在 [] 中,以表明您可以回显 sprintf() 或只是 printf()
这样看起来不错,并且您可以用它完全执行您想要的操作。它也更安全,因为您传递给 sprintf 的参数将被强制为数字、字符串、浮点数等。
只是一个想法
Personally I would do the following:
Obviously I wrapped the optional bits in the [] to show that you can echo sprintf() or just printf()
That way it looks nice and you can do exactly what you want with it. It's more secure too because the parameters which you are passing to the sprintf will be forced to be either a digit, string, float, etc.
Just an idea