我怎样才能转换数组

时间:2016-04-27 05:34:15

标签: arrays formatting

我正在使用传真服务,我喜欢将传真与表格上的多个html网址源合并。

该脚本使用以下数组:

array(2) { [0]=> string(32) "https://www.test.net/test.pdf" [1]=> string(32) "https://www.test.net/test.pdf" }

我的数组看起来像这样

array(2) { ["files"]=> array(2) { [0]=> string(32) "https://www.test.net/test.pdf" [1]=> string(32) "https://www.test.net/test.pdf" } ["send"]=> string(4) "Send" }

我不知道如何以正确的格式更改数组。我希望有人可以帮助我。

1 个答案:

答案 0 :(得分:1)

如果

$a = array(2) { ["files"]=> array(2) { [0]=> string(32) "https://www.test.net/test.pdf" [1]=> string(32) "https://www.test.net/test.pdf" } ["send"]=> string(4) "Send" }

然后

$b=$a['files']

和$ b将是

array(2) { [0]=> string(32) "https://www.test.net/test.pdf" [1]=> string(32) "https://www.test.net/test.pdf" }

反过来

$c=[];
$c['files']=$b;
$c['send']="Send";

和$ c将与$ a相同