可以使用循環遍歷數組,并對每個值進行rawurlencode
處理。例如:
$data = array(
'key1' => 'value1',
'key2' => 'value2',
'key3' => 'value3'
);
foreach ($data as $key => $value) {
$data[$key] = rawurlencode($value);
}
print_r($data);
這樣可以對數組中的每個值進行rawurlencode
處理,最終得到一個處理后的數組。