file_exists
和 mkdir
是兩個(gè)常用的 PHP 函數(shù),分別用于檢查文件是否存在和創(chuàng)建目錄
file_exists
函數(shù)檢查要?jiǎng)?chuàng)建的目錄是否已經(jīng)存在。如果不存在,則使用 mkdir
函數(shù)創(chuàng)建目錄。<?php
$directory = 'path/to/your/directory';
if (!file_exists($directory)) {
if (mkdir($directory, 0755, true)) {
echo "Directory created successfully.";
} else {
echo "Failed to create directory.";
}
} else {
echo "Directory already exists.";
}
?>
在這個(gè)示例中,我們首先定義了要?jiǎng)?chuàng)建的目錄的路徑。然后,我們使用 file_exists
函數(shù)檢查該目錄是否存在。如果不存在,我們使用 mkdir
函數(shù)創(chuàng)建目錄,并設(shè)置相應(yīng)的權(quán)限(0755)。如果目錄創(chuàng)建成功,我們輸出 “Directory created successfully.”,否則輸出 “Failed to create directory.”。如果目錄已經(jīng)存在,我們輸出 “Directory already exists.”。
注意:在使用 mkdir
函數(shù)時(shí),第三個(gè)參數(shù)設(shè)置為 true
,表示如果父目錄不存在,也一并創(chuàng)建父目錄。這樣可以確保目錄結(jié)構(gòu)的完整性。