php中json字符串转换为对象?

青灯夜游
Libérer: 2023-03-02 18:44:01
original
6752 Les gens l'ont consulté

在PHP中,可以使用json_decode()函数来将json字符串转换为PHP对象。json_decode()函数用于解码JSON字符串,把json字符串转成对象或数组,默认转成对象;设置函数的第二个参数为true,则可转成关联数组。

php中json字符串转换为对象?

json_decode()函数是PHP中的内置函数,用于对JSON格式的字符串进行解码,可以将JSON格式的字符串转换为PHP变量(object 或 array)。【相关教程推荐:《PHP教程》】

语法为:

json_decode( $json, $assoc = FALSE, $depth = 512, $options = 0 )
Copier après la connexion

参数:该函数接受四个参数:

  • json:它包含需要解码的JSON字符串。它仅适用于UTF-8编码的字符串。

  • assoc:这是一个布尔变量。如果为true,则返回的对象将转换为关联数组。

  • depth:指定用户指定的递归深度。

  • options:包含JSON_OBJECT_AS_ARRAY,JSON_BIGINT_AS_STRING,JSON_THROW_ON_ERROR的位掩码。

返回值:该函数以适当的PHP类型返回编码的JSON值。如果无法解码json或编码数据的深度大于递归限制,则返回NULL。

示例:

1.png

第二个参数为 TRUE 时,将返回数组,FALSE 时返回对象。

以下是执行结果:

2.png

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!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
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
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!