Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP 컨텍스트 매개변수

<시간/>

소개

컨텍스트 매개변수를 사용하면 파일 시스템 및 기타 스트림 래퍼에 대한 액세스를 사용자 정의할 수 있습니다. 스트림을 구성하기 위해 PHP에는 stream_context_set_params()가 있습니다. 기능.

구문

stream_context_set_params ( resource $stream_or_context , array $params ) : bool

$stream_or_context는 PHP가 지원하는 스트림/래퍼/컨텍스트

중 하나일 수 있습니다.

$params는 다음 속성을 가진 배열입니다. $params['paramname'] ="paramvalue";

구조의 연관 배열이어야 합니다.

컨텍스트 매개변수

알림 − 스트림이 알림을 트리거할 때마다 호출되는 사용자 정의 콜백. https:// 및 ftp:// 스트림 래퍼에만 해당됩니다.

알림 콜백 함수의 구문은 다음과 같습니다.

구문

stream_notification_callback ( int $notification_code , int $severity , string $message , int $message_code , int $bytes_transferred , int $bytes_max ) : void

옵션 − 사용 중인 컨텍스트/래퍼에 해당하는 지원되는 옵션 배열

예시

<?php
$ctx = stream_context_create();
stream_context_set_params($ctx, array("notification" => "stream_notification_callback"));
file_get_contents("https://php.net/contact", false, $ctx);
?>