我有一个PHP回声,我用来回应基于zen cart系统的图像横幅。
<hgroup id="cat_banner" style="background-image:url(images/categories/banners<?php echo"/"; echo strtolower(str_replace('&','and',str_replace(' ','_',$breadcrumb->last()))); ?>_banner.jpg);">
<h1 id="productListHeading"><?php echo $breadcrumb->last(); ?></h1>
<?php
// categories_description
if ($current_categories_description != '') {
?>
<p id="indexProductListCatDescription" class="content"><?php echo $current_categories_description; ?></p>
<?php } // categories_description ?>
它没有在某些图像上显示/,而是在其他图像上显示它并显示图像。
答案 0 :(得分:0)
$path = strtolower(str_replace('&','and',str_replace(' ','_',$breadcrumb->last())));
<hgroup id="cat_banner" style="background-image:url("images/categories/banners/".$path."_banner.jpg)>