在PHP中,可以使用urlencode()
函数对数组中的每个元素进行URL编码。以下是一个示例代码:
<?php
// 创建一个数组
$array = array('value1', 'value with spaces', 'value/with/slashes');
// 使用array_map()函数对数组中的每个元素应用urlencode()函数
$encoded_array = array_map('urlencode', $array);
// 输出编码后的数组
print_r($encoded_array);
?>
运行此代码将输出以下结果:
Array
(
[0] => value1
[1] => value+with+spaces
[2] => value%2Fwith%2Fslashes
)
这样,您就可以对数组中的每个元素进行URL编码了。