微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何用PHP代码创建文件夹?

我们可以用 PHP代码创建文件夹吗?我想要的是,每当一个新用户创建他的文件自动创建他的新帐户和一个PHP文件也创建.这可能吗?
纯粹的基本文件夹创建

<?PHP mkdir(“testing”); ?> < =这样,实际上创建了一个名为“testing”的文件夹.
> mkdir () function on PHP.net

基本文件创建

<?PHP
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>

使用a或开关添加/追加到文件.

> fwrite() function on PHP.net

编辑:

此版本将同时创建一个文件文件夹,并在屏幕上显示.

<?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;

?>

原文地址:https://www.jb51.cc/php/140087.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐