Maison  >  Article  >  développement back-end  >  Comment convertir un tableau php en chaîne json

Comment convertir un tableau php en chaîne json

藏色散人
藏色散人original
2020-08-31 09:25:083309parcourir

Comment convertir un tableau php en chaîne json : créez d'abord un exemple de fichier php ; puis définissez un ensemble de données de tableau ; enfin convertissez le tableau en chaîne json via la méthode "json_encode($color)".

Comment convertir un tableau php en chaîne json

Recommandé : "Tutoriel vidéo PHP"

Convertir des tableaux/objets en PHP en chaînes JSON

Le code est le suivant :

<?php
 
//php语言生成json字符串
//json_encode(数组/对象);
 
//① 索引数组-->JavaScript数组
$color = array(&#39;gold&#39;,&#39;yellow&#39;,&#39;blue&#39;);
echo json_encode($color)."<br />";// ["gold","yellow","blue"]
 
//② 关联数组-->json字符串
$city = array(&#39;shandong&#39;=>&#39;jinan&#39;,&#39;henan&#39;=>&#39;zhengzhou&#39;,&#39;hebei&#39;=>&#39;shijiazhuang&#39;);
echo json_encode($city)."<br />";//{"shandong":"jinan","henan":"zhengzhou","hebei":"shijiazhuang"}
 
//③ 索引关联数组-->json字符串
$city2 = array(&#39;shandong&#39;=>&#39;jinan&#39;,&#39;henan&#39;=>&#39;zhengzhou&#39;,&#39;shenyang&#39;,&#39;hebei&#39;=>&#39;shijiazhuang&#39;);
echo json_encode($city2)."<br />";//{"shandong":"jinan","henan":"zhengzhou","0":"shenyang","hebei":"shijiazhuang"}
 
//④ 对象生成json信息-->json字符串
//   (只会序列化"成员属性",不会序列化"成员方法")
class Person{
    //类内部的成员属性需要有修饰符(var/public/protected/private),其是固定语法
    public $color = "yellow";
    var $height = 170;
    function run(){
        echo "is running";
    }
}
$tom = new Person();
echo json_encode($tom);  //{"color":"yellow","height":170}

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