在PHP中創建文件夾并寫入內容可以使用以下代碼:
<?php
$folderPath = 'path/to/folder'; // 文件夾路徑
$fileName = 'file.txt'; // 文件名
$fileContent = 'Hello, World!'; // 寫入的內容
// 創建文件夾
if (!file_exists($folderPath)) {
mkdir($folderPath, 0777, true);
}
// 創建文件并寫入內容
$file = fopen($folderPath . '/' . $fileName, 'w');
fwrite($file, $fileContent);
fclose($file);
echo 'File created and content written successfully.';
?>
在上面的代碼中,首先指定了要創建文件夾的路徑、要創建的文件名和要寫入的內容。然后通過mkdir()
函數創建文件夾(如果文件夾不存在的話),然后通過fopen()
函數創建文件并指定寫入模式為'w'
,最后通過fwrite()
函數寫入文件內容,最后通過fclose()
函數關閉文件。最后輸出一個成功的消息。