php convertir un string en tableau

php convertir un string en tableau - Programmation

Marsh Posté le 09-09-2001 à 20:23:50    

y'a une fonction php qui permet de mettre un string genre "mom mot" dans un tableau lettre par lettre
 
tablo[0]="m"
tablo[1]="o"
tablo[2]="n"
tablo[3]=" "
...
 
 
ou y'faut la créer ?

Reply

Marsh Posté le 09-09-2001 à 20:23:50   

Reply

Marsh Posté le 09-09-2001 à 22:26:32    

louisebrooks a écrit a écrit :

y'a une fonction php qui permet de mettre un string genre "mom mot" dans un tableau lettre par lettre
 
tablo[0]="m"
tablo[1]="o"
tablo[2]="n"
tablo[3]=" "
...
 
 
ou y'faut la créer ?  




 
AU BOULOT !!!!! :)  
Il va faloir la créer


---------------
http://212.95.67.13/fla/pri.cgi?a= [...] 50&f=20&g=
Reply

Marsh Posté le 09-09-2001 à 23:43:15    

implode(), qui est comme par hasard le complément d'explode() (ma fonction préférée :love:)

Reply

Marsh Posté le 10-09-2001 à 09:53:08    

Allez Zou :
 
$ch="mon mot";
$len_ch= strlen($ch);
 
$i=0;
while($i<$len_ch)
{
 $etape = $len_ch - $i;
 $tab[$i] = substr($ch, -$etape,1);
 $i++;
}

Reply

Marsh Posté le 10-09-2001 à 16:09:31    

une string est deja un tablo
$var="ma chaine";
$var[0]="m"
$var[1]="a"
$var[2]=" "
$var[3]="c"
...
fo juste que tu verifie si ca commence à 1 ou 0, ca je sais plus trop


---------------
A   L   B   A   T   O   R   ¤¤¤ membre de la team Kheops - verre magique powered ¤¤¤
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed