热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

我调用success函数出错,搞了办半天也没明白,高手看看???用的是thinkphp5.0

我执行这个函数publicfunctionindex()

我执行这个函数
public function index()



1
2
3
4
{

    $add='add';

    return ($this->success('dsfafdadfs',$add));

}

结果就报这个错误,没道理呀?我也看了详细看了success这个函数原型,可以带5个变量,总说变量类型错误,什么原因呀,郁闷中.............
[0] InvalidArgumentException in Response.php line 312
variable type error: array

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 * 获取输出数据

 * @return mixed

 */

public function getContent()

{

    if (null == $this->content) {

        $cOntent= $this->output($this->data);



        if (null !== $content && !is_string($content) && !is_numeric($content) && !is_callable([$content,'__toString',])) {

            throw new \InvalidArgumentException(sprintf('variable type error: %s', gettype($content)));

        }



        $this->cOntent= (string) $content;

    }

    return $this->content;

}



/**

 * 获取状态码

Call Stack
in Response.php line 312
at Response->getContent() in Response.php line 94
at Response->send() in start.php line 19
at require('D:1phpwwwroottest...') in index.php line 17### 问题描述




问题出现的环境背景及自己尝试过哪些方法


相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

你期待的结果是什么?实际看到的错误信息又是什么?



   



推荐阅读
author-avatar
手机用户2502879933
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有