curl_setopt_array(): cannot represent a stream of type Outpu
冰貂主人
2023-05-18 16:09:15
0
在guzzle(版本6.3)设置了option中debug为true的时候,linux下没有问题,windows下报如下错误:
curl_setopt_array(): cannot represent a stream of type Output as a STDIO FILE*
// 发送请求
        $resp = $instance->chain('v3/certificates')->get(
            // 调试模式,https://docs.guzzlephp.org/en/stable/request-options.html#debug
            ['debug' => false]或者['debug'=>fopen('php://stdout','w')]

        );
文件路径..\vendor\guzzlehttp\guzzle\src\Utils.php 搜“debugResource”简单改代码就好
更改后代码   
public static function debugResource($value = null)
    {
        if (\is_resource($value)) {
            return $value;
        }
        if (\defined('STDOUT')) {
            return \STDOUT;
        }
		$out='php://output';
		if(strtoupper(substr(PHP_OS,0,3))==='WIN'){ //判断系统改输出模式
			$out='php://stdout';
		}
        return \GuzzleHttp\Psr7\Utils::tryFopen($out, 'w');
    }

相关内容

php curl获取流式数...
php curl获取流式数据
2024-04-16 13:55:24
curl post请求两种...
问题描述: php文件中,通过curl,header头,body参...
2023-12-07 17:30:42
call_user_fun...
问题描述: thinkphp5 查询数据返回layui 表格后出现...
2023-11-21 10:55:42
Array and str...
PHP7.4不再支持使用大括号访问数组以及字符串的偏移_PHP代码...
2023-10-17 10:08:00
Array and str...
问题描述: thinkphp5 出现报错:Array and st...
2023-10-17 10:04:23
Array and str...
php版本太高了,设置7.3以下即可
2023-06-09 16:56:07

热门资讯

tp5 jquery判断手机端... application--common.php中添加如下代码 //函数作用是判断用户打开的是手机端还...
Laravel 5.5 .No... 创建了新的laravel项目后, 运行提示:No application encryption ke...
php 打印date函数出现错... 问题描述: 我使用的是phpstudy,在练习时间函数的时候,打印出现在的时间,date(Y-m-d...
生成随机字符唯一标识符guid... /** * @param $length * @return string * 生成随机字符串 */...
layui缩略图 div class=layui-form-item label class=layui-form-l...
php函数substr_rep... php函数substr_replace从某个位置替换或删除或插入字符串
Laravel 引入自定义类库... 强烈建议引入的类 都是含有命名空间的,这样使用起来就不会出现重名的情况。!!当然,没有命名空间也可以...
object json转化为数... //调用api 程序,通知商户订单异常 20200314 public function callt...
Laravel 查看SQL操作... 方法一:临时打印操作记录 DB::connection()-enableQueryLog(); # ...
php银行开放平台接口:pfx... 问题描述: 对接易通银行,他们的服务开放平台是java开发,而我的是php,现在需要php版本的SD...