
28/01/2008, 22:17
|
| | Fecha de Ingreso: enero-2008
Mensajes: 6
Antigüedad: 17 años, 1 mes Puntos: 0 | |
Re: Aplicacion en PHP actualizable, ftp o como ?? ftp_set_option --------------------->This function controls various runtime options for the specified FTP stream.
Currently, the following options are supported:
Supported runtime FTP options FTP_TIMEOUT_SEC->> ESTA ES LA QUE TE INTERESA ATI Changes the timeout in seconds used for all network related functions. value must be an integer that is greater than 0. The default timeout is 90 seconds.
FTP_AUTOSEEK When enabled, GET or PUT requests with a resumepos or startpos parameter will first seek to the requested position within the file. This is enabled by default.
<?php
// Set the network timeout to 10 seconds
ftp_set_option($conn_id, FTP_TIMEOUT_SEC, 10);
?>
http://mx2.php.net/manual/en/function.ftp-set-option.php
http://www.kimerop.exofire.net
Espero y sirva de algo... |