如何用PHP代码创建文件夹?
发布时间:2020-05-25 09:42:48 所属栏目:PHP 来源:互联网
导读:我们可以用 PHP代码创建文件夹吗?我想要的是,每当一个新用户创建他的文件夹自动创建他的新帐户和一个PHP文件也创建.这可能吗? 纯粹的基本文件夹创建 ?php mkdir(“testing”); ? =这样,实际上创建了一个名为“testing”的文件夹. mkdir () function on PH
|
我们可以用 PHP代码创建文件夹吗?我想要的是,每当一个新用户创建他的文件夹自动创建他的新帐户和一个PHP文件也创建.这可能吗? 纯粹的基本文件夹创建 <?php mkdir(“testing”); ?> < =这样,实际上创建了一个名为“testing”的文件夹. 基本文件创建 <?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;
?> (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
