Juntar array em uma string com PHP
264d atrás
Para juntar um array em uma string no #PHP você pode usar a função implode().
Sintaxe
Use a seguinte sintaxe:
implode(separator, array)
Exemplo
Primeiro, vamos definir uma variável do tipo Array:
$arr = ['One', 'Two', 'Three', 'Four', 'Five'];
implode(', ', $arr);
No exemplo acima, passamos o separador ", ", o resultado será o seguinte:
One, Two, Three, Four, Five
Referências
Para mais informações acesse:
PHP implode() Function
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
Comentários (0)