欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php怎么将object转为string

程序员文章站 2022-04-04 19:43:37
...

php将object转为string的方法:可以利用json_encode()函数来实现。json_encode()函数可以对变量进行json编码,如果执行成功则返回json数据,否则返回false。

php怎么将object转为string

json_encode()函数用于对变量进行 JSON 编码,该函数如果执行成功返回JSON数据,否则返回FALSE。

(推荐教程:php图文教程

语法:

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

(视频教程推荐:php视频教程

代码实现:

<?php
   class Emp {
       public $name = "";
       public $hobbies  = "";
       public $birthdate = "";
   }
   $e = new Emp();
   $e->name = "sachin";
   $e->hobbies  = "sports";
   $e->birthdate = date('m/d/Y h:i:s a', "8/5/1974 12:20:03 p");
   $e->birthdate = date('m/d/Y h:i:s a', strtotime("8/5/1974 12:20:03"));

   echo json_encode($e);
?>

输出结果:

{"name":"sachin","hobbies":"sports","birthdate":"08\/05\/1974 12:20:03 pm"}

以上就是php怎么将object转为string的详细内容,更多请关注其它相关文章!

相关标签: php object string