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,但在从配置文件中调用图像时遇到问题。
基本上,图像的 URL 在配置文件(“config.php”)中定义,如下所示:
/*** VISUAL STYLE ***/ $visual_style['background_image'] = 'http://127.0.0.1/images/bigbackground/1.jpg';
调用图像的函数存储在 index.php 中。
我应该怎么做才能成功调用它?
谢谢。
<img src="<?php echo $visual_style['background_image']; ?>">
或者
<div style="background-image:<?php echo $visual_style['background_image']; ?>"></div>