Maison  >  Article  >  développement back-end  >  Comment convertir un tableau php en tableau js

Comment convertir un tableau php en tableau js

Guanhui
Guanhuioriginal
2020-05-07 14:12:203829parcourir

Comment convertir un tableau php en tableau js

Comment convertir un tableau php en tableau js

Utilisez d'abord "json_encode" pour convertir un tableau php en chaîne json

$arr = ['xiaoming', 'dahuang', 'xiaohua', 'zhangsan'];
$arr = json_encode($arr);
Utilisez ensuite la syntaxe PHP dans le code JS pour générer la chaîne json ;

 var arr = <?php echo $arr?>;

Enfin, utilisez la variable js pour recevoir la chaîne json générée par le code PHP, et la variable js est le tableau converti.

Code :



Résultat impression :

Comment convertir un tableau php en tableau js

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!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn