警告:非法字符串偏移'订单'在---升级php版本

时间:2015-10-27 21:55:31

标签: php string wordpress

所以我收到了这个错误:

  

警告:非法字符串偏移'订单'在   /home/ocnjsurf/public_html/wp-content/themes/sheeva/core/functions-core.php   第19行

这是在我升级到php 5.445后发生的

他们引用的代码是:

function yiw_subval_sort( $a, $subkey ) {
    if( is_array( $a ) AND ! empty( $a ) ) {
        foreach( $a as $k => $v ) {
             $b[$k] = strtolower( $v[$subkey] ); <== this is line 19
        }

        asort( $b );

        foreach( $b as $key => $val ) {
            $c[] = $a[$key];
        }

        return $c;
    }

    return $a;
}  

因此,我不确定如何修复此网站上的错误:http://oceancitynjsurfschool.com/以及它是Wordpress网站,我无法登录后端。

0 个答案:

没有答案