stream_set_timeoutPodręcznik PHPPoprzedniNastępnystream_set_timeout (PHP 4 >= 4.3.0)stream_set_timeout -- Set timeout period on a streamDescriptionbool stream_set_timeout ( resource stream, int seconds, int microseconds)
Sets the timeout value on stream,
expressed in the sum of seconds and
microseconds.
Przykład 1. stream_set_timeout() Example<?php
$fp = fsockopen("www.example.com", 80);
if(!$fp) {
echo "Unable to open\n";
} else {
fputs($fp, "GET / HTTP/1.0\n\n");
$start = time();
stream_set_timeout($fp, 2);
$res = fread($fp, 2000);
var_dump(stream_get_meta_data($fp));
fclose($fp);
print $res;
}
?>
Notatka:
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.
This function was previously called as
set_socket_timeout() and later
socket_set_timeout() but this usage is deprecated.
See also: fsockopen() and fopen().
PoprzedniSpis treściNastępnystream_set_blockingPoczątek rozdziałustream_set_write_buffer
Wyszukiwarka
Podobne podstrony:
function stream set write bufferfunction socket set timeoutfunction stream set blockingfunction stream context set paramsfunction stream context set optionfunction pdf set horiz scalingfunction ldap set optionfunction stream filter appendfunction pdf set info subjectfunction cpdf set viewer preferencesfunction ftp set optionfunction com setfunction stream context createfunction pdf set info titlefunction xml set notation decl handlerfunction xslt set scheme handlerwięcej podobnych podstron