我想对partialLoop
的最后一项进行特殊处理,关于$this->partialCounter
的documentation提及,而不是具有项目总数的变量...
<?php
if( $this->partialCounter == $mysteryvariable -1 ):
?>
我缺少了一些我认为...无法帮助我解决这个问题的方法...
最佳答案
Zend_Registy::set('PartialCount', count($iterable));
$this->partialLoop($script,$iterable);
然后在您看来
$count = Zend_Registy::get('PartialCount');
快速而cr脚,但有效。其他方法是扩展PartialLoop helper;)
关于php - Zend Framework如何获取循环中的项目数? partialLooppartialCounter和?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1699588/