2

我正在使用 magento,我想显示一个 div,这取决于我是否处于特定视图中。我使用以下内容:

<?php
   $url1 = (string)$this->getBaseUrl()."home_tienda";
   $url2 = (string)$this->getUrl('*/*/*',array('_current'=>true, '_use_rewrite'=>true));
?> 

如果我键入 $url1 和 $url2 的“var_dump”,我会得到以下信息:

string(28) "http://127.0.0.1/home_tienda"
string(37) "http://127.0.0.1/home_tienda"

好吧,我试过这个:

<?php if (strcmp($url1,$url2)==0):?>
<div class="clsbanner"><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_banner')->toHtml(); ?></div>
<?php endif?>

我也试过这个:

<?php if ($url1==$url2):?>
<div class="clsbanner"><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_banner')->toHtml(); ?></div>
<?php endif?>

在两者中我都获得了错误,所以我的 div 没有显示,我需要显示它

4

1 回答 1

2

请重试strcmp()和/或stricmp()===操作员联系。另一个有用的工具是stripos(),它从您的 URL 比较中返回 0,但如果未找到字符串则返回 FALSE。

0 == FALSE测试一样...

然而

0 === FALSE将捕获您正在寻找的条件作为===匹配数据类型。

于 2012-06-20T16:57:38.840 回答