Home > Article > Backend Development > How to convert object to string in php
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.
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('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 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!