我只是在看插件。php试图回答上述问题,但我无法解决。调用筛选器的实际代码如下:
do {
foreach( (array) current($wp_filter[$tag]) as $the_ )
if ( !is_null($the_[\'function\']) ){
$args[1] = $value;
$value = call_user_func_array($the_[\'function\'], array_slice($args, 1, (int) $the_[\'accepted_args\']));
}
} while ( next($wp_filter[$tag]) !== false );
如果
(int) $the_[\'accepted_args\']
如果没有,那么它只会将所有可用的内容传递给目标函数
without any adverse affects 对于具有较少形式参数的函数。