我有以下 POST 数组:
[projects] => Array (
[0] => Array
(
[description] => description 1
[path] => url 1
)
[1] => Array
(
[description] => description2
[path] => url 2
)
[2] => Array
(
[description] => description 3
[path] => url 3
)
)
我希望用filter_var_array($_POST, $this -> fields);
where fields =过滤它array('projects' => array('filter' => FILTER_CALLBACK,'flags' => FILTER_FORCE_ARRAY, 'options' => array($this, 'cleanProjects'));
但是,传递给 cleanProjects 函数的值并不是包含描述和路径的数组,而是将所有的值 1 一个一个地传递(所以该方法被调用了六次,1 代表描述 1,1 代表 url 1,1 代表描述2等)
如何让过滤函数将整个对象传递给回调函数?所以它会为项目中的每个对象/数组调用 cleanProjects(在这个例子中是 3 次)。