Home  >  Article  >  Backend Development  >  How to convert object to string in php

How to convert object to string in php

王林
王林Original
2020-08-14 14:13:183901browse

php method to convert objects into strings: You can use the json_encode() function to achieve this. The json_encode() function is used to json encode variables. If the function is executed successfully, it returns json data, otherwise it returns false.

How to convert object to string in php

PHP json_encode() is used to JSON encode variables. This function returns JSON data if executed successfully, otherwise it returns FALSE.

(Recommended tutorial: php graphic tutorial)

Grammar:

string json_encode($value [, $options = 0 ])

(Recommended learning video: php video tutorial )

Example:

<?php
   $arr = array(&#39;a&#39; => 1, &#39;b&#39; => 2, &#39;c&#39; => 3, &#39;d&#39; => 4, &#39;e&#39; => 5);
   echo json_encode($arr);
?>

Run result:

{"a":1,"b":2,"c":3,"d":4,"e":5}

The above is the detailed content of How to convert object to string in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn