こんにちは私はループの3番目のdivごとにコンテンツを追加したいと思います。以下のコードですが、「こんにちは、これは3ddivです」というレンダリングコンテンツも取得していません。
3番目のdivごとに検出されるわけではありません。
<?php
function q_list_item($q_item)
{
$count = 0;
$this->output('<DIV>');
$this->my_items;
$this->output('</DIV>');
$count++;
if($count % 3 == 0) {
echo 'Hi this is the 3rd div';
}
}
?>
----[実際の機能]------------------------------------------ -----
<?php
function q_list_item($q_item)
{
$this->output('<DIV CLASS="qa-q-list-item'.rtrim(' '.@$q_item['classes']).'" '.@$q_item['tags'].'>');
$this->q_item_stats($q_item);
$this->q_item_main($q_item);
$this->q_item_clear();
$this->output('</DIV> <!-- END qa-q-list-item -->', '');
}
?>