implode

(PHP 4, PHP 5, PHP 7, PHP 8)

implodeJoin array elements with a string

Descrição

implode(string$separator, array$array): string

Alternative signature (not supported with named arguments):

implode(array$array): string

Legacy signature (deprecated as of PHP 7.4.0, removed as of PHP 8.0.0):

implode(array$array, string$separator): string

Join array elements with a separator string.

Parâmetros

separator

Optional. Defaults to an empty string.

array

The array of strings to implode.

Valor Retornado

Returns a string containing a string representation of all the array elements in the same order, with the separator string between each element.

Registro de Alterações

VersãoDescrição
8.0.0 Passing the separator after the array is no longer supported.
7.4.0 Passing the separator after the array (i.e. using the legacy signature) has been deprecated.

Exemplos

Exemplo #1 implode() example

<?php

$array
= ['lastname', 'email', 'phone'];
var_dump(implode(",", $array)); // string(20) "lastname,email,phone"

// Empty string when using an empty array:
var_dump(implode('hello', [])); // string(0) ""

// The separator is optional:
var_dump(implode(['a', 'b', 'c'])); // string(3) "abc"

?>

Notas

Nota: Esta função é compatível com dados binários.

Veja Também

To Top