PHP mkdir() Examples

mkdir() function creates a new directory. If success, return TRUE, otherwise FALSE.
   bool mkdir(str path [, int mode = 0777, bool recursive = false, resource context])

<?PHP
    mkdir("tp/");  //create directory tp/ in current directory by default
	mkdir("./tp/"); //create directory tp/ in current directory
	if (!file_exists("../tp/"))
		mkdir("../tp/"); //create directory tp/ in upper directory if not exists	
?>

By default the new created directory can be accessed and modified by anybody. To create a user read only directory.

<?PHP
   mkdir("tp/",0400);  //read only
?>

If the recursive option is true, nested directories can be created.

<?PHP
	mkdir("1/2/3/",0400,true); //create 1/2/3/ under current directory
?>

rmdir() delete an empty directory.

<?PHP
    if (is_empty("tp/"))
		rmdir("tp/");
	
	function is_empty($dir)
	{
	   $rad = opendir($dir);
	   while (($file = readdir($rad)) !== false)
	   {
			if ($file != "." && $file != "..")
			{
				closedir($rad);
				return FALSE;
			}
	   }
	   closedir($rad);
	   return TRUE;
	}
?>



:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home