• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • stream_context_set_params()

    (PHP 4 >= 4.3.0, PHP 5, PHP 7)

    Set parameters for a stream/wrapper/context

    说明

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

    Sets parameters on the specified context.

    参数

    $stream_or_context

    The stream or context to apply the parameters too.

    $params

    An array of parameters to set.

    Note:

    $paramsshould be an associative array of the structure:$params['paramname']="paramvalue";.

    Supported parameters

    ParametersPurpose
    notificationName of user-defined callback function to be called whenever a stream triggers a notification. Only supported forhttp://andftp://stream wrappers.
    optionsArray of options as incontext options and parameters.

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    参见