Open In App

PHP | ftp_mkdir() function

Last Updated : 26 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The ftp_mkdir() function is an inbuilt function in PHP which is used to create a new directory on the ftp server. Once the directory is created cannot be created again. Creating a directory that already exists will produce error. 
Syntax: 

string ftp_mkdir( $ftp_connection, $directory_name )

Parameter: This function accepts two parameters as mentioned above and described below:  

  • $ftp_connection: It is the required parameter and used to specify the ftp connection on which directory to be created.
  • $directory_name:It is the required parameter and used to specify the name of the directory to be created.

If child directory is to be created in an existing or non-existing directory then the $directory_name parameter to be set in the format “(parent directory name)/(child directory name)/(child of child directory name)/…” so on. For example, create a directory named as childdirectory inside testdirectory then $directory_name = “testdirectory/childdirectory”;
Return Value: It returns the name of the directory that created on success, False on failure. 
Note:  

  • This function is available for PHP 4.0.0 and newer version.
  • The following example cannot be run on online IDE. So try to run in some PHP hosting server or localhost with proper ftp server name and correct username and password.

Example 1:  

php




<?php
// Connecting to ftp server
 
// Use ftp server address
$fserver = "ftp.gfg.org";
 
// Use ftp username
$fuser="username";
 
// Use ftp password
$fpass="password";
 
// Connect to the ftp server
$f_conn = ftp_connect($fserver) or
    die("Could not connect to $fserver");
     
// Authenticating to ftp server    
$login = ftp_login($f_conn, $fuser, $fpass);
 
// Directory name which is to be created
$dir = "testdirectory";
 
// Creating directory
if (ftp_mkdir($f_conn, $dir)) {
     
    // Execute if directory created successfully
    echo " $dir Successfully created";
}
else {
     
    // Execute if fails to create directory
    echo "Error while creating $dir";
}
 
// Closing ftp connection
ftp_close($f_conn);
 
?>


Output: 

testdirectory Successfully created

 

Example 2: In case of child directory to be created then everything is same as before except $dir i.e. directory name. 

php




<?php
//Connecting to ftp server
 
// Use ftp server address
$fserver = "ftp.exampleserver.com";
 
// Use ftp username
$fuser="username";
 
// Use ftp password
$fpass="password";
 
// Connecting to ftp server
$f_conn = ftp_connect($fserver) or
        die("Could not connect to $fserver");
         
// Authenticating to ftp server        
$login = ftp_login($f_conn, $fuser, $fpass);
 
// Directory name which is to be created
$dir = "testdirectory/childdirectory";
 
// Creating directory
if (ftp_mkdir($f_conn, $dir)) {
     
    // Execute if directory created successfully
    echo " $dir Successfully created";
}
else {
     
    // Execute if fails to create directory
    echo "Error while creating $dir";
}
 
// Closing ftp connection
ftp_close($f_conn);
 
?>


Output: 

testdirectory/childdirectory Successfully created

 

Note: If directory name already exist then it produce error.
Reference: http://php.net/manual/en/function.ftp-mkdir.php



Similar Reads

How to get the function name inside a function in PHP ?
To get the function name inside the PHP function we need to use Magic constants(__FUNCTION__). Magic constants: Magic constants are the predefined constants in PHP which is used on the basis of their use. These constants are starts and end with a double underscore (__). These constants are created by various extensions. Syntax: $string = __FUNCTION
1 min read
How the User-Defined Function differs from Built-in Function in PHP ?
In PHP, functions are blocks of reusable code that perform specific tasks. They enhance code readability, modularity, and maintainability by encapsulating logic into named units. PHP functions can be categorized into two main types: user-defined functions and built-in functions. User-Defined FunctionsUser-defined functions are functions created by
2 min read
PHP 5 vs PHP 7
PHP is a server side scripting language designed for web development by Rasmus Lerdorf in 1994. Since its launch in 1994 PHP has become an industry standard supporting almost 80% of the websites ( 79.8% to be precise) with its closest competitor being ASP.Net at 19.8% and others like Ruby, Java trailing far behind. The PHP development team released
4 min read
PHP | Get PHP configuration information using phpinfo()
PHP provides us with a built-in function phpinfo() which gives us the details about the PHP version and PHP configuration of PHP installed in our system. To know about the Configurations and PHP version which is installed in your computer, a simple PHP script can be used. The script consists of a PHP function called "phpinfo()" which outputs inform
2 min read
PHP | php.ini File Configuration
At the time of PHP installation, php.ini is a special file provided as a default configuration file. It's very essential configuration file which controls, what a user can or cannot do with the website. Each time PHP is initialized, the php.ini file is read by the system. Sometimes you need to change the behavior of PHP at runtime, then this config
5 min read
How to import config.php file in a PHP script ?
The include statement in PHP copies the code of text from the file mentioned, into the file that uses the include statement. It directs the preprocessor to insert the content specified into the following program. The name of the file to be included is written in double-quotes. It is a good practice to write the basic database details and user detai
2 min read
How to include content of a PHP file into another PHP file ?
Including the content of a PHP file into another file reduces the complexity of code by reducing the code and improving its modularity by splitting the code into different files so that it is easy to understand and manage. There are two ways to do it by using the following PHP functions. PHP include() Function: It will show the warning if the file
2 min read
What is New in PHP Type Hinting Support in PHP 8?
PHP 8 introduced several enhancements and new features related to type hinting. That will check the code for their respective type so that we can use our code efficiently. These are the following features used in PHP Type Hitting Support: Table of Content Union TypesMixed TypeStatic Return TypeInheritance of Contravariant ParametersInheritance of P
3 min read
PHP | imagecreatetruecolor() Function
The imagecreatetruecolor() function is an inbuilt function in PHP which is used to create a new true-color image. This function returns a blank image of the given size. Syntax: resource imagecreatetruecolor( $width, $height ) Parameters: This function accepts two parameters as mentioned above and described below: $width: This parameter is used to s
2 min read
PHP fpassthru( ) Function
The fpassthru() function in PHP is an inbuilt function which is used to read data from a current position from a specified file until end of file and then write the result to the output buffer. The file which has to be read is sent as a parameter to the fpassthru() function and it returns the number of characters passed on success or FALSE on failu
2 min read