也许我在这里遗漏了一些基础知识。我有一个数组并使用array_filter()函数过滤值。我在过滤器函数上使用echo来查看过滤后的值是否正常工作。
<?php
$columns = array(
0 => 'ISO',
1 => 'Country',
2 => 'Country Code',
3 => 'Type of number',
4 => 'Voice Enabled',
5 => 'SMS Enabled',
6 => 'MMS Enabled',
7 => 'Domestic Voice Only',
8 => 'Domestic SMS only',
9 => 'Price /num/month',
10 => 'Inbound Voice price/min',
11 => 'Inbound SMS price/msg ',
12 => 'Inbound MMS price/msg ',
13 => 'Beta Status',
14 => 'Address Required',
);
echo '<pre>';
$columns = array_filter($columns, '_filter_column_names');
echo '</pre>';
function _filter_column_names($column_name){
$column_name = str_replace(' /', '_', $column_name);
$column_name = strtolower(str_replace(array(' ', '/'), '_', trim($column_name)));
echo $column_name.'<br>';
return $column_name;
}
echo '<pre>';
print_r($columns);
echo '</pre>';
iso
country
country_code
type_of_number
voice_enabled
sms_enabled
mms_enabled
domestic_voice_only
domestic_sms_only
price_num_month
inbound_voice_price_min
inbound_sms_price_msg
inbound_mms_price_msg
beta_status
address_required
Array
(
[0] => ISO
[1] => Country
[2] => Country Code
[3] => Type of number
[4] => Voice Enabled
[5] => SMS Enabled
[6] => MMS Enabled
[7] => Domestic Voice Only
[8] => Domestic SMS only
[9] => Price /num/month
[10] => Inbound Voice price/min
[11] => Inbound SMS price/msg
[12] => Inbound MMS price/msg
[13] => Beta Status
[14] => Address Required
)
生成的过滤后的数组根本没有过滤。虽然看起来过滤器函数内的数组值是正确过滤的。你也可以在这里看到http://3v4l.org/SttJ3
答案 0 :(得分:3)
我认为你误解了array_filter的作用。正如文档所说,它&#34;使用回调函数过滤数组元素&#34;这意味着回调应该返回true / false,具体取决于是否应该包含它。
你可能想要使用的是array_map,它在每个项目上运行回调并返回修改后的项目。
答案 1 :(得分:0)
迭代数组中的每个值,并将它们传递给回调 功能。如果回调函数返回true,则返回当前值 从数组返回到结果数组。
对于输出数组中不需要的元素,您的回调需要返回FALSE。