curl_setopt_array(): cannot represent a stream of type Outpu
发布时间:2023-05-18作者:冰貂主人点击:162
更改后代码
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');
}