与stream_context_create等效的CURLOPT_USERPWD

时间:2018-04-01 16:52:48

标签: php curl php-stream-wrappers

是否可以在使用stream_context_create?

时设置USERPWD

我试过那样的

$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header' => "Authorization: Basic " . base64_encode("$username:$password")                 
  )
);

$context = stream_context_create($opts);

我只是想知道它是正确的等价物吗?并且是否需要base64_encode?

0 个答案:

没有答案