PHP问题,在某些页面上显示正斜杠但不在其他页面上显示

时间:2015-02-03 09:23:05

标签: php

我有一个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 ?>

它没有在某些图像上显示/,而是在其他图像上显示它并显示图像。

1 个答案:

答案 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)>