PHPコードでフォルダーを作成できますか?新しいユーザーが新しいアカウントを作成するたびに、フォルダーが自動的に作成され、PHPファイルも作成されます。これは可能?
<?php mkdir("testing"); ?>
<= this、実際には「testing」というフォルダーを作成します。
<?php
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>
a
またはa+
スイッチを使用して、ファイルに追加/追加します。
<?php
// change the name below for the folder you want
$dir = "new_folder_name";
$file_to_write = 'test.txt';
$content_to_write = "The content";
if( is_dir($dir) === false )
{
mkdir($dir);
}
$file = fopen($dir . '/' . $file_to_write,"w");
// a different way to write content into
// fwrite($file,"Hello World.");
fwrite($file, $content_to_write);
// closes the file
fclose($file);
// this will show the created file from the created folder on screen
include $dir . '/' . $file_to_write;
?>
簡単に作成できます:
$structure = './depth1/depth2/depth3/';
if (!mkdir($structure, 0, true)) {
die('Failed to create folders...');
}
...その後、 copy()
を使用してPHPファイルを複製しますが、これは非常に非効率的です。
PHPでファイルに書き込む方法に関する質問への回答では、例として次を使用できます。
$fp = fopen ($filename, "a"); # a = append to the file. w = write to the file (create new if doesn't exist)
if ($fp) {
fwrite ($fp, $text); //$text is what you are writing to the file
fclose ($fp);
$writeSuccess = "Yes";
#echo ("File written");
}
else {
$writeSuccess = "No";
#echo ("File was not written");
}