我想请求有关如何在 getpath() 函数中提取特定值的信息。
目前我放置了以下信息:
<?php $currentCat = Mage::registry('current_category'); ?>
<?php echo $currentCat->getPath()?>
和系统 echo 1/2/5 ,其中 1 是根的根,2 是目录根,5 是第一个简单类别。
我想仅提取该系列类别中的第三个值(本示例中的数字 5)以仅在页面中回显该信息,但我尝试了不同的方法但没有成功。
谢谢你。