PHP打印缩略图简单问题

发布于 2024-12-04 20:58:51 字数 407 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

北渚 2024-12-11 20:58:51

单引号中的字符串不解析变量。你要么需要这样做:

echo "<img src=$thumbPath id=$thumbId border=\"none\"/>";

要么这样:

echo '<img src='.$thumbPath.' id='.$thumbId.' border="none"/>';

Strings in single quotes do not parse variables. You either need to do this:

echo "<img src=$thumbPath id=$thumbId border=\"none\"/>";

or this:

echo '<img src='.$thumbPath.' id='.$thumbId.' border="none"/>';
思慕 2024-12-11 20:58:51

单引号括起来的变量不会计算为 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".

心安伴我暖 2024-12-11 20:58:51

更改

echo '<img src=$thumbPath id=$thumbId border="none"/>';

echo '<img src="'.$thumbPath.'" id="'.$thumbId.'" border="none"/>';

change

echo '<img src=$thumbPath id=$thumbId border="none"/>';

to

echo '<img src="'.$thumbPath.'" id="'.$thumbId.'" border="none"/>';
掩耳倾听 2024-12-11 20:58:51
echo '<img src='.$thumbPath.' id='.$thumbId.' border="none"/>';

php 中的单引号不计算嵌入变量。
希望有帮助。

echo '<img src='.$thumbPath.' id='.$thumbId.' border="none"/>';

Single quotes in php don't evaluate embedded variables.
Hope it helps.

云醉月微眠 2024-12-11 20:58:51

就我个人而言,我会执行以下操作:

[echo s]printf('<img src="%s" id="%d" border="none" />', 
            $thumbPath, 
            $thumbId);

显然,我将可选位包装在 [] 中,以表明您可以回显 sprintf() 或只是 printf()

这样看起来不错,并且您可以用它完全执行您想要的操作。它也更安全,因为您传递给 sprintf 的参数将被强制为数字、字符串、浮点数等。

只是一个想法

Personally I would do the following:

[echo s]printf('<img src="%s" id="%d" border="none" />', 
            $thumbPath, 
            $thumbId);

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文