要在PHP中使用stream_context_create進行身份認證,可以使用以下方法:
$auth = array(
'http' => array(
'header' => "Authorization: Basic " . base64_encode("username:password")
)
);
$context = stream_context_create($auth);
$stream = fopen('http://example.com', 'r', false, $context);
這樣,在與遠程服務器建立連接時,會自動發送包含認證信息的請求頭,從而進行身份認證。