警告:session_start()期望参数1为数组,字符串为

时间:2018-11-01 19:22:23

标签: php wordpress warnings session-variables

这是我在WordPress中遇到的问题。代码片段在这里。警告说问题出在第286行。第286行以第二个$ value变量开头。这是网站的链接:RedTwig这是文件的链接:class-wp-hook.php

// Avoid the array_slice if possible.
            if ( $the_['accepted_args'] == 0 ) {
                $value = call_user_func_array( $the_['function'], array() );
            } elseif ( $the_['accepted_args'] >= $num_args ) {
                $value = call_user_func_array( $the_['function'], $args );
            } else {
                $value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) );
            }

0 个答案:

没有答案