Opzioni di contesto FTP

Opzioni di contesto FTPElenco delle opzioni di contesto FTP

Descrizione

Opzioni di contesto per i trasporti ftp:// e ftps://.

Opzioni

overwrite bool

Permette la sovrascrittura dei file già esistenti sul server remoto. Si applica solo alla modalità di scrittura (upload).

Il valore predefinito è false.

resume_pos int

Offset del file a partire dal quale iniziare il trasferimento. Si applica solo alla modalità di lettura (download).

Il valore predefinito è 0 (Inizio del file).

proxy string

Inoltra la richiesta FTP tramite un server proxy http. Si applica solo alle operazioni di lettura dei file. Es: tcp://squid.example.com:8000.

Note

Nota: Opzioni di contesto del socket sottostante
Ulteriori opzioni di contesto possono essere supportate dal trasporto sottostante. Per i flussi ftp://, fare riferimento alle opzioni di contesto per il trasporto tcp://. Per i flussi ftps://, fare riferimento alle opzioni di contesto per il trasporto ssl://.

add a note

User Contributed Notes 3 notes

up
17
php dot net at misterchucker dot com
16 years ago
This is an example of how to allow fopen() to overwrite a file on an FTP site. If the stream context is not modified, an error will occur: "...failed to open stream: Remote file already exists and overwrite context option not specified...".

<?php
// The path to the FTP file, including login arguments
$ftp_path = 'ftp://username:[email protected]/example.txt';

// Allows overwriting of existing files on the remote FTP server
$stream_options = array('ftp' => array('overwrite' => true));

// Creates a stream context resource with the defined options
$stream_context = stream_context_create($stream_options);

// Opens the file for writing and truncates it to zero length 
if ($fh = fopen($ftp_path, 'w', 0, $stream_context))
{
    // Writes contents to the file
    fputs($fh, 'example contents');
    
    // Closes the file handle
    fclose($fh);
}
else
{
    die('Could not open file.');
}
?>
up
-1
dev at codesatori dot com
9 years ago
Apparently the overwrite-option only registers as false if it's absent. If I specify it as false, it acts the same as true and overwrites. Then, 
<?php
if (empty($opts['overwrite'])) {
    unset($opts['overwrite']);
}
?>
...was the simple fix for my FTP stream wrapper class sporting default options. This is quite unexpected though; false means false even if I say so? Apparently PHP (7.0.2) just checks if the option exists, not its boolean value.
up
-3
instatiendaweb at gmail dot com
4 years ago
// Ruta del ftp debe coincidir con la ruta del localhost
$ftp_path = 'ftp://francisco:aaa@localhost:21/ftparchivo.txt';
// Escribimos las opciones de stream
$stream_options = array('ftp' => array('overwrite' => TRUE));
// Creamos un contexto
$stream_context = stream_context_create($stream_options);
\escribir::verifacionnota($stream_context, 'STREAMCONTEXT');
// Abrimos el fichero que vamos a leer
$flujo = fopen($ftp_path, 'r', false, $stream_context);
//Funcion creada :vardump + string
\escribir::verifacionnota($flujo, 'VARDUMP FOPEN');

$contenido = '';
//Traduccion mientras el contenido del archivo no este al final del fichero ==> feof
while (!feof($flujo)) {
//Entonces lee 8192 bytes del archivo y añadelos a la variable contenido
$contenido .= fread($flujo, 8192);
}
\escribir::verifacionnota($contenido, 'VARDUMP CONTENIDO');
//Cerramos el flujo
fclose($flujo);
To Top