Skip to content

Tag Archives: PHP- FTP

The ftp_set_option() function is an inbuilt function in PHP which is used to set runtime option for existing FTP Connection. Syntax:  ftp_set_option( $ftp_connection, $option, $value… Read More
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 )… Read More
The ftp_get_option() function is an inbuilt function in PHP which is used to get runtime option for existing FTP Connection. Syntax:  ftp_get_option( $ftp_connection, $option )… Read More
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… Read More
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: … Read More
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 )… Read More
The ftp_rawlist() function is an inbuilt function in PHP which returns a list of files with information like permissions, last modified the files from a… Read More
The ftp_get() function is an inbuilt function in PHP which is used to get or download files from FTP server to local server or machine.… Read More
The ftp_mdtm() function is an inbuilt function in PHP which is used to get time when the file on FTP server was last modified. Syntax: … Read More
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,… Read More
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… Read More
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 );… Read More
The ftp_size() function is an inbuilt function in PHP which is used to get the size of a given file on FTP server.Syntax:   ftp_size( $ftp_connection,… Read More
The ftp_nlist() function is an inbuilt function in PHP which is used to get the list of all the filename and sub-directory in a specific… Read More
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… Read More