1

これには問題があります...「予期しないT_VARIABLE」と表示されます。問題のある行は次のとおりです。

$children[ $i['parent_id'] ][] = array($i['forum_id'], "<option value=\"{$i['forum_id']}\"$selected>  ", "{$i['forum_name']}</option>\n");

$(in ) を削除しようとしまし$childrenたが、それでもエラーになります。「解析エラー: 構文エラー、予期しない '[' in ...」と表示されます

奇妙なことに、これは PHP 5.2 では問題なく動作します。しかし、PHP 5.3 では問題が発生します。

私は実際にはプログラマーではないので (少し基本的なことしか知らないので、主に設計を行っています)、ここで何が起こっているのかまったくわかりません。誰でも助けてもらえますか?

完全な関数は次のとおりです。

function build_forum_jump($html=1, $override=0, $remove_redirects=0)
{
    global $INFO, $DB, $ibforums;
    $last_cat_id = -1;

    if ( $remove_redirects )
    {
        $qe = 'AND f.redirect_on <> 1';
    }
    else
    {
        $qe = '';
    }

    $DB->query("SELECT f.id as forum_id, f.parent_id, f.subwrap, f.sub_can_post, f.name as forum_name, f.position, f.redirect_on, f.read_perms, c.id as cat_id, c.name
                FROM ibf_forums f
                 LEFT JOIN ibf_categories c ON (c.id=f.category)
                WHERE c.state IN (1,2) $qe
                ORDER BY c.position, f.position");


    if ($html == 1) {

        $the_html = "<form onsubmit=\"if(document.jumpmenu.f.value == -1){return false;}\" action='{$ibforums->base_url}act=SF' method='get' name='jumpmenu'>
                     <input type='hidden' name='act' value='SF' />\n<input type='hidden' name='s' value='{$ibforums->session_id}' />
                     <select name='f' onchange=\"if(this.options[this.selectedIndex].value != -1){ document.jumpmenu.submit() }\" class='forminput'>
                     <optgroup label=\"{$ibforums->lang['sj_title']}\">
                      <option value='sj_home'>{$ibforums->lang['sj_home']}</option>
                      <option value='sj_search'>{$ibforums->lang['sj_search']}</option>
                      <option value='sj_help'>{$ibforums->lang['sj_help']}</option>
                     </optgroup>
                     <optgroup label=\"{$ibforums->lang['forum_jump']}\">";
    }

    $forum_keys = array();
    $cat_keys   = array();
    $children   = array();
    $subs       = array();
    $subwrap    = array();

    // disable short mode if we're compiling a mod form

    if ($html == 0 or $override == 1)
    {
        $ibforums->vars['short_forum_jump'] = 0;
    }

    while ( $i = $DB->fetch_row() )
    {
        $selected = '';
        $redirect = "";

        if ($html == 1 or $override == 1)
        {
            if ($ibforums->input['f'] and $ibforums->input['f'] == $i['forum_id'])
            {
                $selected = ' selected="selected"';
            }
        }

        if ( $i['redirect_on'] )
        {
            $redirect = $ibforums->lang['fj_redirect'];
        }

        if ($i['subwrap'] == 1)
        {
            $subwrap[ $i['forum_id'] ] = 1;
        }

        if ($i['subwrap'] == 1 and $i['sub_can_post'] != 1)
        {
        /***************************
        *** INFINITE SUBFORUMS 
        ****************************/
        if ($i['parent_id'] > 0)    {
            $children[ $i['parent_id'] ][] = array($i['forum_id'], "<option value=\"{$i['forum_id']}\"".$sub_css."$selected>  ", "{$i['forum_name']}$is_sub</option>\n");
        }
        else    {
            $forum_keys[ $i['cat_id'] ][$i['forum_id']] = "<option value=\"{$i['forum_id']}\"".$sub_css."$selected>  -{$i['forum_name']}$is_sub</option>\n";
        }
        /**********INFINITE - END**************/

        }
        else
        {
            if ( $this->check_perms($i['read_perms']) == TRUE )
            {
                if ($i['parent_id'] > 0)
                {
                /***************************
                *** INFINITE SUBFORUMS
                ****************************/
                $children[ $i['parent_id'] ][] = array($i['forum_id'], "<option value=\"{$i['forum_id']}\"$selected>  ", "{$i['forum_name']}</option>\n");
                /**********INFINITE - END**************/
                }
                else
                {
                    $forum_keys[ $i['cat_id'] ][$i['forum_id']] = "<option value=\"{$i['forum_id']}\"".$selected.">&nbsp;&nbsp;- {$i['forum_name']} $redirect</option><!--fx:{$i['forum_id']}-->\n";
                }
            }
            else
            {
                continue;
            }
        }

        if ($last_cat_id != $i['cat_id'])
        {

            // Make sure cats with hidden forums are not shown in forum jump

            $cat_keys[ $i['cat_id'] ] = "<option value='-1'>{$i['name']}</option>\n";

            $last_cat_id = $i['cat_id'];

        }
    }

    foreach($cat_keys as $cat_id => $cat_text)
    {
        if ( is_array( $forum_keys[$cat_id] ) && count( $forum_keys[$cat_id] ) > 0 )
        {
            $the_html .= $cat_text;

            foreach($forum_keys[$cat_id] as $idx => $forum_text)
            {
                if ( $subwrap[$idx] != 1 )
                {
                    $the_html .= $forum_text;
                }
                else if (count($children[$idx]) > 0)
                {
                    $the_html .= $forum_text;

                    if ($ibforums->vars['short_forum_jump'] != 1)
                    {
                        /****** INFINITE SUBFORUMS FIX BEGINS ************/
                        $the_html .= $this->subforums_addtoform($idx, \$children);
                        /********** INFINITE FIX - END ************/
                    }
                    else
                    {
                        $the_html = str_replace( "</option><!--fx:$idx-->", " (+".count($children[$idx])." {$ibforums->lang['fj_subforums']})</option>", $the_html );
                    }
                }
                else
                {
                    $the_html .= $forum_text;
                }
            }
        }
    }


    if ($html == 1)
    {
        $the_html .= "</optgroup>\n</select>&nbsp;<input type='submit' value='{$ibforums->lang['jmp_go']}' class='forminput' /></form>";
    }

    return $the_html;

}
4

4 に答える 4

1

あなたは間違った場所を見ています。

/****** INFINITE SUBFORUMS FIX BEGINS ************/
$the_html .= $this->subforums_addtoform($idx, \$children);
/********** INFINITE FIX - END ************/

$childrenではない はず\$childrenです。


なぜこれが PHP 5.2 で機能し、PHP 5.3 では機能しなかったのかについては、名前空間に「\」文字が導入されました(例: MyNamespace\SubSpace\Something)。

次のコードがあるとします。

function foo() {
    $children = 'Hello world';
    echo \$children;
}
foo();

PHP 5.2 では、結果は次のようになります。

警告: 入力に予期しない文字があります: '\' (ASCII=92) %s 行 %d の状態 = 1

こんにちは世界

PHP 5.3 の場合:

解析エラー: 構文エラー、予期しない T_VARIABLE、%s 行 %d の T_STRING が必要です

PHP 5.4 の場合:

解析エラー: 構文エラー、予期しない '$children' (T_VARIABLE)、%s 行 %d の識別子 (T_STRING) が必要です

于 2012-03-11T12:14:49.727 に答える
1

http://wordpress.org/support/topic/plugin-post-google-map-coud-not-to-activate-the-plugin

WPが機能していた後、次のコードからPHPが更新された後、同じエラーが発生しました。

if($bgc==""){
    $bgc="#eeeeee";
}else{ \
    $bgc="";
}
$gmp_action = "delete-address";
?>

バックスラッシュを削除すると修正されました。

于 2012-04-26T06:03:24.313 に答える
1

これを試して。行全体を少し明確に(そしてより順応的に)書き直しました。

$children[$i['parent_id']][] = array($i['forum_id'], '<option value="'.$i['forum_id'].'"'.$selected.'>  ', $i['forum_name'].'</option>\n');

また、ペーストビンの 1270 行を次のように変更します。

$the_html = str_replace('</option><!--fx:'.$idx.'-->', '(+'.count($children[$idx]).' '.$ibforums->lang['fj_subforums'].')</option>', $the_html);
于 2012-03-09T08:58:48.273 に答える
0

これを試して:

$children[ $i['parent_id'] ][] = array($i['forum_id'], '<option value="'.$i['forum_id'].'"'.$sub_css.'"'.$selected.'>  ', $i['forum_name'].$is_sub.'</option>'."\n");
于 2012-03-09T08:59:00.113 に答える