我在 php 中有双数组中的数据。现在我需要将该数组数据存储到字符串中。我怎么能在php中做到这一点?我是 php 新手。请在这方面帮助我。
数组如下:
Array ( [0] => Array ( [id] => 100 [type] => test1 [count] => 8 [count2] => 8)
[1] => Array ( [id] => 103 [type2] => test2[count2] => 3 [count3] => 3 ))
我在 php 中有双数组中的数据。现在我需要将该数组数据存储到字符串中。我怎么能在php中做到这一点?我是 php 新手。请在这方面帮助我。
数组如下:
Array ( [0] => Array ( [id] => 100 [type] => test1 [count] => 8 [count2] => 8)
[1] => Array ( [id] => 103 [type2] => test2[count2] => 3 [count3] => 3 ))
您可以使用implode()
将数组转换为字符串: http: //php.net/manual/en/function.implode.php