La función Ds\Set::join() es una función incorporada en PHP que se usa para unir todos los valores como una string.
Sintaxis:
string public Ds\Set::join ([ string $glue ] )
Parámetros: esta función acepta un único parámetro $pegamento , que es opcional. Se utiliza para separar el elemento conjunto.
Valor de retorno: esta función devuelve una string.
Los siguientes programas ilustran la función Ds\Set::join() en PHP:
Programa 1:
<?php // Create new set $set = new \Ds\Set(["G", "E", "E", "K", "S", 1, 2, 3, 4]); // Use join() function and // display the string var_dump($set->join()); ?>
Producción:
string(8) "GEKS1234"
Programa 2:
<?php // Create new set $set = new \Ds\Set(["G", "E", "E", "K", "S", 1, 2, 3, 4]); // Use join() function and // display the string separated // with comma var_dump($set->join(", ")); // Create new set $set = new \Ds\Set([1, 2, 3, "g", "e"]); // Use join() function var_dump($set->join("|")); ?>
Producción:
string(22) "G, E, K, S, 1, 2, 3, 4" string(9) "1|2|3|g|e"
Referencia: https://www.php.net/manual/en/ds-set.join.php