PHP - Funzione mkdir ()
La funzione mkdir () può creare una directory e questa funzione può restituire true in caso di successo o false in caso di fallimento.
Sintassi
bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = FALSE [, resource $context ]]] )
Questa funzione può tentare di creare una directory specificata dal percorso.
Esempio 1
<?php
mkdir("/PhpProject/testing");
echo "Directory created successfully!!!";
?>
Produzione
Directory created successfully!!!
Sintassi
Esempio-2
<?php
$structure = "/PhpProject/test1/test2/test3";
if(!mkdir($structure, 0777, true)) {
echo "Failed to create folders...";
} else {
echo "Nested structure created successfully!!!";
}
?>
Produzione
Nested structure created successfully!!!