基于另一个递增变量的增量

时间:2012-10-20 21:15:32

标签: php loops while-loop auto-increment

我有这种奇怪的情况,我想不出解决方案。

我有一个变量$cat_count = 1;,我在一个循环中使用它,然后在我使用过的地方下面的某个地方$cat_count++

然后我有另一个字母计数器,它按以下方式工作:

我有$alpha_string = 'abcdefghijklmnopqrstuvwxyz';$alpha_counter = 0;。我使用以下方式 - $alpha = $alpha_string{$alpha_counter}。我希望我的字母计数器从{strong> a 开始计数,只要$cat_count增加1。

例如,我们会这样:

$cat_count = 1
$alpha = a
$alpha = b

$cat_count = 2
$alpha = a
$alpha = b

我暂时得到的是:

$cat_count = 1
$alpha = a
$alpha = b

$cat_count = 2
$alpha = c
$alpha = d

想法?

谢谢。

1 个答案:

答案 0 :(得分:2)

跟随我的评论回答..

$counter        = 0;
$cat_count      = 1;
$alpha_count    = 'abcdefghijklmnopqrstuvwxyz';
$rule_id        = null;
$public_cats    = array();

while ($row = $db->sql_fetchrow($result))
{
    if ($rule_id != $row['rule_id']) 
    {       
        $group_ids  = array_map('intval', explode(' ', $row['groups']));
        $is_grouped = false;

        // Check if user can see a specific category if he is not an admin or moderator
        if (!$auth->acl_get('a_') && !$auth->acl_get('m_'))
        {
            $is_grouped = (group_memberships($group_ids, $user->data['user_id'], true)) ? true : false;
        }
        else
        {
            $is_grouped = true; 
        }

        // Fill $public_cats with boolean values
        if ($is_grouped !== false)
        {
            $public_cats[] = $is_grouped;
        }

        $rule_id = $row['rule_id'];

        $template->assign_block_vars('rules', array(
            'RULE_CATEGORY' => $row['rule_title'],
            'ROW_COUNT'     => $cat_count,
            'CAN_SEE_CAT'   => $is_grouped
        ));

        $cat_count++;
        $counter = 0;
    }

    $uid = $bitfield = $options = '';
    generate_text_for_storage($row['rule_desc'], $uid, $bitfield, $options, $row['bbcode'], $row['links'], $row['smilies']);

    $template->assign_block_vars('rules.rule', array(
        'RULE_DESC'     => generate_text_for_display($row['rule_desc'], $uid, $bitfield, $options),
        'ALPHA_COUNT'   => $alpha_count{$counter}
    ));

    $counter++;
}