首页 >函数列表 >stream_set_timeout

stream_set_timeout

stream_set_timeout

(PHP 4 >= 4.3.0, PHP 5)

stream_set_timeoutSet timeout period on a stream

说明

bool stream_set_timeout ( resource $stream , int $seconds [, int $microseconds = 0 ] )

Sets the timeout value on stream, expressed in the sum of seconds and microseconds.

When the stream times out, the 'timed_out' key of the array returned by stream_get_meta_data() is set to TRUE, although no error/warning is generated.

参数

stream

The target stream.

seconds

The seconds part of the timeout to be set.

microseconds

The microseconds part of the timeout to be set.

返回值

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

更新日志

版本 说明
4.3.0 As of PHP 4.3, this function can (potentially) work on any kind of stream. In PHP 4.3, socket based streams are still the only kind supported in the PHP core, although streams from other extensions may support this function.

范例

Example #1 stream_set_timeout() example

<?php
$fp 
fsockopen("www.example.com"80);
if (!
$fp) {
    echo 
"Unable to open ";
} else {

    
fwrite($fp"GET / HTTP/1.0 ");
    
stream_set_timeout($fp2);
    
$res fread($fp2000);

    
$info stream_get_meta_data($fp);
    
fclose($fp);

    if (
$info['timed_out']) {
        echo 
'Connection timed out!';
    } else {
        echo 
$res;
    }

}
?>

注释

Note:

This function doesn't work with advanced operations like stream_socket_recvfrom(), use stream_select() with timeout parameter instead.

This function was previously called as set_socket_timeout() and later socket_set_timeout() but this usage is deprecated.

参见

  • fsockopen() - Open Internet or Unix domain socket connection
  • fopen() - 打开文件或者 URL

  • set_socket_blocking
  • stream_bucket_append
  • stream_bucket_make_writeable
  • stream_bucket_new
  • stream_bucket_prepend
  • stream_context_create
  • stream_context_get_default
  • stream_context_get_options
  • stream_context_get_params
  • stream_context_set_default
  • stream_context_set_option
  • stream_context_set_params
  • stream_copy_to_stream
  • stream_encoding
  • stream_filter_append
  • stream_filter_prepend
  • stream_filter_register
  • stream_filter_remove
  • stream_get_contents
  • stream_get_filters
  • stream_get_line
  • stream_get_meta_data
  • stream_get_transports
  • stream_get_wrappers
  • stream_is_local
  • stream_notification_callback
  • stream_register_wrapper
  • stream_resolve_include_path
  • stream_select
  • stream_set_blocking
  • stream_set_read_buffer
  • stream_set_timeout
  • stream_set_write_buffer
  • stream_socket_accept
  • stream_socket_client
  • stream_socket_enable_crypto
  • stream_socket_get_name
  • stream_socket_pair
  • stream_socket_recvfrom
  • stream_socket_sendto
  • stream_socket_server
  • stream_socket_shutdown
  • stream_supports_lock
  • stream_wrapper_restore
  • stream_wrapper_unregister
  • PHP MySQL HTML CSS JavaScript MSSQL AJAX .NET JSP Linux Mac ASP 服务器 SQL jQuery C# C++ java Android IOS oracle MongoDB SQLite wamp 交通频道