PHP中字符串的数组键值

时间:2017-09-25 09:19:25

标签: php arrays string type-conversion

我想转换这种风格的数组:

0x8000...0000

进入字符串:

Array ( [0] => Array ( [post_id] => 20752 ) [1] => Array ( [post_id] => 20753 ) ) 

我该怎么做?

1 个答案:

答案 0 :(得分:1)

您可以结合使用array_column

来使用PHP implode功能
implode(', ', array_column($data, 'post_id'));