码迷,mamicode.com
首页 > 其他好文 > 详细

tp5中的return

时间:2019-05-02 17:02:33      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:com   return   tp5   class   find   name   type   数组   code   

return 可以输出对象,但是不可以输出数组

class Index
{
    public function index(Student $student)
    {
       $data = $student->find(25);

       dump($data);
       dump(gettype($data));

       $arr = [name=>qiqi];

       return ($data);  //$data为对象
    }

}

 

输出:

技术图片

 -------------------------------------------------------------------------------------

 

class Index
{
    public function index(Student $student)
    {
       $data = $student->find(25);

       dump($data);
       dump(gettype($data));

       $arr = [name=>qiqi];

       return ($arr);  //$arr是一个数组
    }

}

 

输出:

技术图片

 

tp5中的return

标签:com   return   tp5   class   find   name   type   数组   code   

原文地址:https://www.cnblogs.com/qq254980080/p/10802676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!