una - Valor de clave de matriz para string en PHP
recorrer string php (1)
Puede usar PHP función array_column
con combinación de implode
:
implode('', '', array_column($data, ''post_id''));
Quiero convertir una matriz de este estilo:
Array ( [0] => Array ( [post_id] => 20752 ) [1] => Array ( [post_id] => 20753 ) )
en la cadena:
20752, 20753
¿Cómo puedo hacer esto?