我想编写代码的方式:
$chain = Articles::model()->visible()->childOf($teleshow_id);
echo $chain->count( $criteria );
// 1st echo - will write the amount of visible articles,
// which are children of $teleshow_id
echo $chain->count( $criteria );
// this echo will write the amount of all articles
但我想得到与echo
s 相同的结果。
是否有任何解决方案可以保持 $chain 持久性(不使用指向 Articles::model()->visible()->childOf($teleshow_id) 的指针)