PHP | ftp_alloc() function Last Updated : 28 Jul, 2021 Comments Improve Suggest changes Like Article Like Report The ftp_alloc() function is an inbuilt function in PHP which is used to allocate space for file to be uploaded in FTP server.Syntax: ftp_alloc( $ftp_connection, $filesize, $result ); Parameter: This function accepts three parameters as mentioned above and described below: $ftp_connection: It is required parameter. It specifies the already existing FTP connection to use for allocating space and uploading the file.$filesize: It is required parameter. It specifies the size of the file in bytes i.e. number of bytes to allocate.$result: This parameter is optional. It specifies a variable to store the response in it. Return Value: It returns True on success or False on failure.Note: This function is available for PHP 5.0.0 and newer version.The following examples cannot be run on online IDE. So try to run in some PHP hosting server or localhost with proper ftp server name. Below examples illustrate the ftp_alloc() function in PHP:Example 1: php <?php // Connect to FTP server // Use a correct ftp server $ftp_server = "localhost"; // Use correct ftp username $ftp_username = "user"; // Use correct ftp password corresponding // to the ftp username $ftp_userpass = "user"; // File name or path to upload to ftp server $file = "filetoupload.txt"; // Establishing ftp connection $ftp_connection = ftp_connect($ftp_server) or die("Could not connect to $ftp_server"); if($ftp_connection) { echo "successfully connected to the ftp server!"; // Logging in to established connection // with ftp username password $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); if($login) { // Checking whether logged in successfully or not echo "<br>logged in successfully!"; // Allocating space for the file as specified // i.e. in $file if(ftp_alloc($ftp_connection, filesize($file), $result)) { echo "<br>space successfully allocated on the FTP server"; if(ftp_put($ftp_connection, "uploadedfile_name_in_server.txt", $file, FTP_ASCII)) { echo "<br>Uploaded successful $file."; } else { echo "<br>Error while uploading $file."; } } else { echo "<br>space allocation failed!"; } } else { echo "<br>login failed!"; } // Closing connection if(ftp_close($ftp_connection)) { echo "<br>Connection closed Successfully!"; } } ?> Output: successfully connected to the ftp server! logged in successfully! space successfully allocated on the FTP server Uploaded successful filetoupload.txt. Connection closed Successfully! Example 2: Connect to ftp server using port number 21 and then allocate and upload file. php <?php // Connect to FTP server // Use a correct ftp server $ftp_server = "localhost"; // Use correct ftp username $ftp_username = "user"; // Use correct ftp password corresponding // to the ftp username $ftp_userpass = "user"; // File name or path to upload to ftp server $file = "filetoupload.txt"; // Establishing ftp connection $ftp_connection = ftp_connect($ftp_server, 21) or die("Could not connect to $ftp_server"); if($ftp_connection) { echo "successfully connected to the ftp server!"; // Logging in to established connection // with ftp username password $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); if($login) { // Checking whether logged in successfully or not echo "<br>logged in successfully!"; // Allocating space for the file as specified // i.e. in $file if(ftp_alloc($ftp_connection, filesize($file), $result)) { echo "<br>space successfully allocated on the FTP server"; if(ftp_put($ftp_connection, "uploadedfile_name_in_server.txt", $file, FTP_ASCII)) { echo "<br>Uploaded successful $file."; } else { echo "<br>Error while uploading $file."; } } else { echo "<br>space allocation failed!"; } } else { echo "<br>login failed!"; } // Closing connection if(ftp_close($ftp_connection)) { echo "<br>Connection closed Successfully!"; } } ?> Output: successfully connected to the ftp server! logged in successfully! space successfully allocated on the FTP server Uploaded successful filetoupload.txt. Connection closed Successfully! Reference: https://www.php.net/manual/en/function.ftp-alloc.php Comment More infoAdvertise with us Next Article PHP | ftp_alloc() function G gekcho Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- FTP Similar Reads PHP | ftp_exec() function The ftp_exec() function is an inbuilt function in PHP that is used to execute a command on the FTP server. Syntax: ftp_exec( $ftp_connection, $command ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required parameter. It specifies 2 min read PHP | ftp_connect() function The ftp_connect() function is an inbuilt function in PHP which is used to create a new connection to the specified FTP server or Host. When connection is successful then only other FTP functions can be run against the server. Syntax: ftp_connect( $ftp_host, $ftp_port, $timeout ); Parameter: This fu 2 min read PHP | ftp_chdir() function The ftp_chdir() function is an inbuilt function in PHP which is used to change the current directory on the FTP server. Syntax: ftp_chdir( $ftp_connection, $directory ) Parameter: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required paramete 2 min read PHP | ftp_delete() function The ftp_delete() function is an inbuilt function in PHP which is used to delete a file on the FTP server. Syntax: ftp_delete( $ftp_connection, $file ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required parameter. It specifies t 2 min read PHP | ftp_raw() function The ftp_raw() function is an inbuilt function in PHP which is used to send a raw command to the Remote server i.e. FTP Server. Syntax: ftp_raw( $ftp_connection, $command ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required para 2 min read PHP | ftp_put() function The ftp_put() function is an inbuilt function in PHP which is used to upload files to FTP server.Syntax:  ftp_put( $ftp_connection, $remote_file_path, $local_file_path, $mode, $start_position ); Parameter: This function accepts five parameters as mentioned above and described below:  $ftp_connecti 3 min read PHP | ftp_pwd() function The ftp_pwd() function is an inbuilt function in PHP which returns the current directory name of the specified FTP connection. This function was introduced in PHP 4. Syntax: string ftp_pwd( $ftp_conn ) Parameter: This function accepts single parameter $ftp_conn which is used to specify the used FTP 2 min read PHP | ftp_ssl_connect() Function The ftp_ssl_connect() function is an inbuilt function in PHP which opens a secure SSL-FTP connection. FTP functions can be run against the server while the connection is open. It opens an explicit SSL-FTP connection to the host specified in parameter. It will succeed even if the server's certificate 2 min read PHP | ftell( ) Function The ftell() function in PHP is an inbuilt function which is used to return the current position in an open file. The file is sent as a parameter to the ftell() function and it returns the current file pointer position on success, or FALSE on failure.Syntax:  ftell( $file ) Parameters Used: The ftel 2 min read PHP | fstat( ) Function The fstat() function in PHP is an inbuilt function which is used to return information about an open file. The file name is sent as a parameter to the fstat() function and it returns an array with the following elements : Numeric Associative Description 0 dev Device number 1 ino inode number* 2 mode 3 min read Like