4

这对大多数人来说可能很简单......

我在 Magento 中有这条线,这是发布到 Pinterest 的内容的一部分。

<?php echo urlencode( $_product->getShortDescription() ) . " $" . urlencode( number_format( $_product->getPrice(),2 ) ); ?>

在此的某处,我需要去除标签,因为简短描述使用所见即所得编辑器并随后将标签添加到数据库中,我相信我需要插入到上面的是以下内容(因为 Magento 已经具有此功能):-

$this->stripTags

请任何人都可以建议如何将其正确添加到上面而不破坏页面?如果我需要进一步提供任何东西,请告诉我。

提前致谢。

4

2 回答 2

11

这使用 php 的内置函数 strip_tags 并且应该可以工作:

<?php echo urlencode( strip_tags($_product->getShortDescription()) ) . " $" . urlencode( number_format( $_product->getPrice(),2 ) ); ?>

要使用 Magento 的功能,请使用以下命令:

<?php echo urlencode( $this->stripTags($_product->getShortDescription()) ) . " $" . urlencode( number_format( $_product->getPrice(),2 ) ); ?>

虽然这只有在 $this 指向“某物”的有效对象实例时才有效(对不起,我不知道 Magento 的内部结构)

于 2012-03-07T10:17:30.357 回答
0

由于 stripTags 功能在所有块和助手中都可用,您可以使用

Mage::helper('core')->stripTags($data)
于 2018-02-19T09:18:20.110 回答