Comment changer un tableau PHP en caractère : créez d'abord un exemple de fichier PHP ; puis définissez un tableau et enfin utilisez la fonction implode pour transformer le tableau en chaîne.
L'environnement d'exploitation de cet article : système Windows 7, PHP version 7.1, ordinateur DELL G3
Comment changer les tableaux PHP en caractères ?
Tableau PHP en chaîne
implode Utilisez une chaîne pour convertir un tableau en chaîne
<?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated; // lastname,email,phone // Empty string when using an empty array: var_dump(implode('hello', array())); // string(0) "" ?>
Apprentissage recommandé : "Tutoriel vidéo PHP"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!