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

Comment convertir un tableau d'objets php en chaîne json

藏色散人
藏色散人original
2020-10-16 09:11:232976parcourir

Comment convertir un tableau d'objets php en chaîne json : créez d'abord un exemple de fichier PHP ; puis créez un tableau et enfin convertissez le tableau au format json via la méthode "json_encode($array);"

Comment convertir un tableau d'objets php en chaîne json

Recommandé : "Tutoriel vidéo PHP"

PHP convertit les objets en tableaux de chaînes json instance de tableau json

<?php
//创建数组
$array = array( 
"name" => "Hza",
"age" => 21
);
//数组转化为json格式
echo json_encode($array); 
echo "<br />";
//创建类
class Student {
public $name;
public $age; 
//初始化是赋值
function __construct($name, $age)
{  
$this->name = $name; 
$this->age = $age;
} 
//魔术方法 把对象转换成字符串格式 以备使用json_encode()函数
function __tostring() { 
//对象转化为json格式
return json_encode($this,JSON_FORCE_OBJECT);
}
}
//实例化对象
$person1 = new Student(&#39;Hza&#39;, 20);
//输出json格式
echo $person1;
?>

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