gpt4 book ai didi

PHP: curl_setopt_array 发出通知 "array to string conversion"

转载 作者:可可西里 更新时间:2023-11-01 13:54:18 31 4
gpt4 key购买 nike

curl_setopt_array( $ch, $curl_opt );

这段代码给出了一个通知 Notice: Array to string conversion in ...

这是 $curl_opt 包含的内容:

array (size=5)
42 => boolean true
19913 => boolean true
10018 => string 'PHP RestClient/0.1.2' (length=20)
10005 =>
array (size=1)
0 => string 'user:password' (length=13)
10002 => string 'http://longurl.com/' (length=389)

is_array($curl_opt) 返回 true,所以我真的不知道是什么导致了通知。

我想我只是错过了一些真的很简单的东西,但我就是不能,为了我的生活,想出这个。

这只是一个通知,并没有破坏任何东西,只是让我很烦,我不知道是什么原因造成的。

最佳答案

$curl_opt 应该是一个一维数组...................... …………

关键10005不是这样的,应该是

$curl_opt = array(
//...
CURLOPT_USERPWD => '[username]:[password]'
//...
);

关于PHP: curl_setopt_array 发出通知 "array to string conversion",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23051930/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com