如何调用img src中的函数

时间:2018-01-11 16:50:24

标签: php wordpress

我有以下代码,但不想对图像进行编码,因为Base64只是链接图像并使用相同的功能获得它。

<img src="data:image/png;base64,'.base64_encode(file_get_contents(get_field('email_logo', 'option')['url'])).'" alt="The Domain" />

如何在img src中调用函数?

2 个答案:

答案 0 :(得分:1)

您还没有向我们展示这段代码如何连接到它周围的PHP。假设事先有一个封闭的PHP块,而不是出现在打印或heredoc ......

?>
...
<img src="data:image/png;base64,
  <?php 
     print base64_encode(file_get_contents(
         get_field('email_logo', 'option')['url']
         ));
  ?>'" alt="The Domain" />

答案 1 :(得分:0)

如果您只想要链接,那么它是正确的:

<img src="'.get_field('email_logo', 'option')['url'].'"/>