使用 PHP 创建文件夹 [已关闭]编辑:
我们可以用PHP代码创建文件夹吗?我希望每当新用户创建他的新帐户时,他的文件夹会自动创建,并且还会创建一个PHP文件。这可能吗?
我们可以用PHP代码创建文件夹吗?我希望每当新用户创建他的新帐户时,他的文件夹会自动创建,并且还会创建一个PHP文件。这可能吗?
<?php mkdir("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;
?>