The ftp_alloc() function allocates space for files to be uploaded to the FTP server.
If successful, the function returns TRUE. If it fails, returns FALSE.
ftp_alloc(ftp_connection,size,return)
parameter | describe |
---|---|
ftp_connection | Required. Specifies the FTP connection to use. |
size | Required. Specifies the number of bytes to be allocated. |
return | Optional. Specifies the variable to store the server response. |
Note: Many FTP servers do not support this command.
<?php$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");ftp_login($conn,"admin","ert456");ftp_alloc($conn,"160",$ response);echo $response;ftp_close($conn);?>
<?php$file = "myfile.txt";$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");ftp_login($conn,"admin","ert456");if (ftp_alloc($conn, filesize($file), $response)) { echo "Space allocated on server."; }else { echo "Unable to allocate space. " . $response; }ftp_close($conn);?>