-1

我在一个名为 $str 的 php 块中有一个字符串,一个 img url。我想将该字符串设置为 img src 中的 img src 但它不起作用。

<img src="<?php $str ?>" height="50px" width="50px">

我还能如何将 src 设置为 $str 字符串?

4

4 回答 4

4
<img src="<?php echo $str;?>" height="50px" width="50px">
于 2012-11-19T03:28:22.807 回答
1

好吧,我找到了这个问题的正确答案。上面的答案没有任何效果,该代码仅将源字符串打印到站点上的 html 页面。

这对我有用(我有返回图片源字符串的函数):

require_once("../../my_coded_php_functions.php");

<?php echo '<img src="' . getSourcePathOfImage() . '" />' ?>

这个网站(文章)帮助我找到并理解解决方案:

http://php.net/manual/en/faq.html.php

于 2016-07-25T23:27:14.433 回答
0
<?php echo '<img src="'.$str.'" height="50px" width="50px">' ?>
于 2012-11-19T03:37:41.590 回答
0

其他方式,虽然不推荐。您可以尝试:

<img src="<?=$str?>" height="50px" width="50px">

这将起作用,仅当(在 php.ini 中)

short_open_tag = 开启

于 2012-11-19T03:41:38.130 回答