|
PHP5中文手册
stream_set_timeout(PHP 4 >= 4.3.0, PHP 5) stream_set_timeout — Set timeout period on a stream Description
bool stream_set_timeout
( resource $stream
, int $seconds
[, int $microseconds
] )
Sets the timeout value on stream , expressed in the sum of seconds and microseconds . 如果成功则返回 TRUE,失败则返回 FALSE。 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.
Example#1 stream_set_timeout() example
<?php
This function was previously called as set_socket_timeout() and later socket_set_timeout() but this usage is deprecated. See also fsockopen() and fopen(). |