php json_encode

URLDecoder.decode(String s, String enc) 

使用指定的編碼機制對 application/x-www-form-urlencoded 字符串解碼。  php


<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
print_r($result);
?>
以上例程會輸出:

Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)




http://wanxw2001.iteye.com/blog/1570339
app

http://www.php.net/manual/zh/function.array-merge.php
編碼

相關文章
相關標籤/搜索