可以使用循环遍历数组,并对每个值进行rawurlencode
处理。例如:
$data = array(
'key1' => 'value1',
'key2' => 'value2',
'key3' => 'value3'
);
foreach ($data as $key => $value) {
$data[$key] = rawurlencode($value);
}
print_r($data);
这样可以对数组中的每个值进行rawurlencode
处理,最终得到一个处理后的数组。