PHP walker类数组和对象

时间:2016-03-11 15:58:42

标签: php arrays wordpress

我正在使用walker类创建一个WordPress主题的菜单和我的代码;

class Walker_Nav_Primary extends Walker_Nav_menu {

    function start_lvl( &$output, $depth = 0, $args = array() ){ //ul
        $indent = str_repeat("\t",$depth);
        $submenu = ($depth > 0) ? ' sub-menu' : '';
        $output .= "\n$indent<ul class=\"dropdown-menu$submenu depth_$depth\">\n";
    }

    function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ){ //li a span

        $indent = ( $depth ) ? str_repeat("\t",$depth) : '';

        $li_attributes = '';
        $class_names = $value = '';

        $classes = empty( $item->classes ) ? array() : (array) $item->classes;

        $classes[] = ($args->walker->has_children) ? 'dropdown' : '';
        $classes[] = ($item->current || $item->current_item_ancestor) ? 'active' : '';
        $classes[] = 'menu-item-' . $item->ID;
        if( $depth && $args->walker->has_children ){
            $classes[] = 'dropdown-submenu';
        }

        $class_names =  join(' ', apply_filters('nav_menu_css_class', array_filter( $classes ), $item, $args ) );
        $class_names = ' class="' . esc_attr($class_names) . '"';

        $id = apply_filters('nav_menu_item_id', 'menu-item-'.$item->ID, $item, $args);
        $id = strlen( $id ) ? ' id="' . esc_attr( $id ) . '"' : '';

        $output .= $indent . '<li' . $id . $value . $class_names . $li_attributes . '>';

        $attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr($item->attr_title) . '"' : '';
        $attributes .= ! empty( $item->target ) ? ' target="' . esc_attr($item->target) . '"' : '';
        $attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr($item->xfn) . '"' : '';
        $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr($item->url) . '"' : '';

        $attributes .= ( $args->walker->has_children ) ? ' class="dropdown-toggle" data-toggle="dropdown"' : '';

        $item_output = $args->before;
        $item_output .= '<a' . $attributes . '>';
        $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
        $item_output .= ( $depth == 0 && $args->walker->has_children ) ? ' <b class="caret"></b></a>' : '</a>';
        $item_output .= $args->after;

        $output .= apply_filters ( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );

    }

}

然而,当一位朋友看到他正在看下面这条消息的主题时,我和其他人都没有看到这条消息,而且菜单工作正常。

  

严格标准:Walker_Nav_Primary :: start_lvl()声明   应该与Walker_Nav_Menu :: start_lvl兼容(&amp; $ output,$ depth =   0,$ args = Array)在第0行的/ / inc / walker.php

所以他做了一些更改,第一个是通过在start_lvl函数中输入$ args = array()来解决这个错误,但是他写道$ args不是一个对象,它是一个数组,所以你不能做$ args-&gt;东西,你必须做$ args ['something'],它给出了代码;

class Walker_Nav_Primary extends Walker_Nav_menu {

    function start_lvl( &$output, $depth = 0, $args = array() ) { //ul
        $indent = str_repeat("\t",$depth);
        $submenu = ($depth > 0) ? ' sub-menu' : '';
        $output .= "\n$indent<ul class=\"dropdown-menu$submenu depth_$depth\">\n";
    }

    function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ){ //li a span
        $indent = ( $depth ) ? str_repeat("\t",$depth) : '';
        $li_attributes = '';
        $class_names = $value = '';
        $classes = empty( $item->classes ) ? array() : (array) $item->classes;

        $classes[] = ($args['walker']->has_children) ? 'dropdown' : '';

        $classes[] = ($item->current || $item->current_item_ancestor) ? 'active' : '';
        $classes[] = 'menu-item-' . $item->ID;
        if( $depth && $args['walker']->has_children ){
            $classes[] = 'dropdown-submenu';
        }
        $class_names =  join(' ', apply_filters('nav_menu_css_class', array_filter( $classes ), $item, $args ) );
        $class_names = ' class="' . esc_attr($class_names) . '"';
        $id = apply_filters('nav_menu_item_id', 'menu-item-'.$item->ID, $item, $args);
        $id = strlen( $id ) ? ' id="' . esc_attr( $id ) . '"' : '';
        $output .= $indent . '<li' . $id . $value . $class_names . $li_attributes . '>';
        $attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr($item->attr_title) . '"' : '';
        $attributes .= ! empty( $item->target ) ? ' target="' . esc_attr($item->target) . '"' : '';
        $attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr($item->xfn) . '"' : '';
        $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr($item->url) . '"' : '';
        $attributes .= ( $args['walker']->has_children ) ? ' class="dropdown-toggle" data-toggle="dropdown"' : '';
        $item_output = $args['before'];
        $item_output .= '<a' . $attributes . '>';
        $item_output .= $args['link_before'] . apply_filters( 'the_title', $item->title, $item->ID ) . $args['link_after'];
        $item_output .= ( $depth == 0 && $args['walker']->has_children ) ? ' <b class="caret"></b></a>' : '</a>';
        $item_output .= $args['after'];
        $output .= apply_filters ( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }
}

然而,当我运行代码时,我收到以下错误

  

致命错误:无法在

中使用stdClass类型的对象作为数组

指的是

$classes[] = ($args->walker->has_children) ? 'dropdown' : '';

已更改为

$classes[] = ($args['walker']->has_children) ? 'dropdown' : '';

我们都在同一个PHP和WordPress上,所以我不明白为什么它对他有用而不是我,这是正确的方法。

任何人都可以放弃任何光明吗?

1 个答案:

答案 0 :(得分:0)

如果您确定$args是一个数组,请在使用$args之前放置此代码

if (!isset($args['walker']) || !(is_object($args['walker']) && isset($args['walker']->has_children)) {
   $classes[] = '';
   $args = (object) array('walker' => array('has_children' => false));
}

但是如果$args对象然后使用以下内容:

if (!isset($args->walker) || !(is_object($args->walker) && isset($args->walker->has_children)) {
   $classes[] = '';
   $args = (object) array('walker' => array('has_children' => false));
}

如果不一致,首先要使其一致,请确保$ args数组或对象。