“In Loop wie fügen Sie String von comma in PHP hinzu” Code-Antworten

In Loop wie fügen Sie String von comma in PHP hinzu

//join string values by comma in loop
$string = '';

foreach ($array as $key => $value) {
    $string .= ",$value";
}

$string = substr($string, 1); // remove leading ","
//@sujay
$uj@y

In Loop wie fügen Sie String von comma in PHP hinzu

$values = "";

foreach ($stuffs as $stuff) {
    $values != "" && $values .= ",";
    $values .= $stuff;
 }

echo $values;
//@sujay
$uj@y

Ähnliche Antworten wie “In Loop wie fügen Sie String von comma in PHP hinzu”

Fragen ähnlich wie “In Loop wie fügen Sie String von comma in PHP hinzu”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen