0

我正在尝试将 php 中的类中的一些属性编码为 JSON,但我返回的所有方法都是 {}

这是我的代码,我哪里出错了?

谢谢。

    <?php

    class Person  
    {  
        private $_photo;  
        private $_name;  
        private $_email;  


        public function __construct($photo, $name, $email)  
        {  
    $this->_photo = $photo;  
            $this->_name = $name;  
            $this->_email = $email;  

        }  



       public function getJsonData() {
          $json = new stdClass;
          foreach (get_object_vars($this) as $name => $value) {
             $this->$name = $value;
          }
          return json_encode($json);
       }


    }  


    $person1 = new Person("mypicture.jpg", "john doe", "doeman@gmail.com");  

    print_r( $person1->getJsonData() );
4

2 回答 2

2

这是因为您没有使用 $json 变量,而是使用了 $this->$name。您还指的是哪个 $this ?您没有使用我所看到的 $json 变量。

class Person  
{  
    private $_photo;  
    private $_name;  
    private $_email;  


    public function __construct($photo, $name, $email)  
    {  
$this->_photo = $photo;  
        $this->_name = $name;  
        $this->_email = $email;  

    }  



   public function getJsonData() {
      //I'd make this an array
      //$json = new stdClass;
      $json = array();

      foreach (get_object_vars($this) as $name => $value) {
         //Here is my change
         //$this->$name = $value;
         $json[$name] = $value
      }
      return json_encode($json);
   }


}  


$person1 = new Person("mypicture.jpg", "john doe", "doeman@gmail.com");  

print_r( $person1->getJsonData() );

希望它能解决你的问题。我就是这样做的。

于 2013-04-03T23:26:14.257 回答
0

从 PHP 5.4 开始,在您的类中实现JsonSerializable接口。

于 2013-04-03T23:36:26.710 回答