wenn $test = "like, ilch, the, best, cms"
möchte ich durch eine while schleife das ausgegeben bekommen:
like
ilch
the
best
cms
z.B.
while($das=$dasundso){ echo $das; }
ich hoffe ihr versteht wie ich das möchte?
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
while($das=$dasundso){ echo $das; }
$test = str_replace(' ', '', $test);
$test_array = explode(',', $test);
foreach ( $test_array as $key => $value ) { echo $key . ' => ' . $value . '<br />'; }
$test = "like, ilch, the, best, cms"; $test = str_replace(' ', '', $test); $test_array = explode(',', $test); foreach ( $test_array as $key => $value ) { echo $key . ' => ' . $value . '<br />'; }
0 => like 1 => ilch 2 => the 3 => best 4 => cms
<?php $string = 'haus,garten, auto, maus,katze'; $string = trim(explode(',', $string)); ?>
Geschlossen | ||
Zurück zu HTML, PHP, SQL,... |