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


PHP issue, forward slash showing on some pages but not others

>我有一个php回显,我用它来回显基于zen购物车的系统的图像横幅。

<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 ?>
它不在某些图像上显示

/,但在其他图像上显示它并显示图像。

$path = strtolower(str_replace('&','and',str_replace(' ','_',$breadcrumb->last())));
<hgroup id="cat_banner" style="background-image:url("images/categories/banners/".$path."_banner.jpg)>