1. <i id='4jR6e'><tr id='4jR6e'><dt id='4jR6e'><q id='4jR6e'><span id='4jR6e'><b id='4jR6e'><form id='4jR6e'><ins id='4jR6e'></ins><ul id='4jR6e'></ul><sub id='4jR6e'></sub></form><legend id='4jR6e'></legend><bdo id='4jR6e'><pre id='4jR6e'><center id='4jR6e'></center></pre></bdo></b><th id='4jR6e'></th></span></q></dt></tr></i><div id='4jR6e'><tfoot id='4jR6e'></tfoot><dl id='4jR6e'><fieldset id='4jR6e'></fieldset></dl></div>
    2. <tfoot id='4jR6e'></tfoot>

      <small id='4jR6e'></small><noframes id='4jR6e'>

        • <bdo id='4jR6e'></bdo><ul id='4jR6e'></ul>

        <legend id='4jR6e'><style id='4jR6e'><dir id='4jR6e'><q id='4jR6e'></q></dir></style></legend>
      1. 使用 PHP 创建文件夹

        时间:2023-07-15

          <legend id='f46gR'><style id='f46gR'><dir id='f46gR'><q id='f46gR'></q></dir></style></legend>

              <small id='f46gR'></small><noframes id='f46gR'>

              <i id='f46gR'><tr id='f46gR'><dt id='f46gR'><q id='f46gR'><span id='f46gR'><b id='f46gR'><form id='f46gR'><ins id='f46gR'></ins><ul id='f46gR'></ul><sub id='f46gR'></sub></form><legend id='f46gR'></legend><bdo id='f46gR'><pre id='f46gR'><center id='f46gR'></center></pre></bdo></b><th id='f46gR'></th></span></q></dt></tr></i><div id='f46gR'><tfoot id='f46gR'></tfoot><dl id='f46gR'><fieldset id='f46gR'></fieldset></dl></div>
              • <tfoot id='f46gR'></tfoot>
                  <bdo id='f46gR'></bdo><ul id='f46gR'></ul>
                    <tbody id='f46gR'></tbody>
                • 本文介绍了使用 PHP 创建文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我们可以用 PHP 代码创建文件夹吗?我希望每当新用户创建他的新帐户时,他的文件夹都会自动创建,并且还会创建一个 PHP 文件.这可能吗?

                  Can we create folder with PHP code? I want that whenever a new user create his new account his folder automatically creates and a PHP file also created. Is this possible?

                  推荐答案

                  纯粹的基本文件夹创建

                  <= this,实际上创建了一个名为testing"的文件夹.

                  Purely basic folder creation

                  <?php mkdir("testing"); ?> <= this, actually creates a folder called "testing".

                  • PHP.net 上的 mkdir() 函数
                  <?php
                  $file = fopen("test.txt","w");
                  echo fwrite($file,"Hello World. Testing!");
                  fclose($file);
                  ?>
                  

                  使用 aa+ 开关添加/附加到文件.

                  Use the a or a+ switch to add/append to file.

                  • PHP.net 上的 fwrite() 函数
                  <?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;
                  
                  ?>
                  

                  这篇关于使用 PHP 创建文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:PHP mkdir()、chmod() 和 Windows 下一篇:如何在 PHP 中获得独立于平台的目录分隔符?

                  相关文章

                    <i id='8ohcU'><tr id='8ohcU'><dt id='8ohcU'><q id='8ohcU'><span id='8ohcU'><b id='8ohcU'><form id='8ohcU'><ins id='8ohcU'></ins><ul id='8ohcU'></ul><sub id='8ohcU'></sub></form><legend id='8ohcU'></legend><bdo id='8ohcU'><pre id='8ohcU'><center id='8ohcU'></center></pre></bdo></b><th id='8ohcU'></th></span></q></dt></tr></i><div id='8ohcU'><tfoot id='8ohcU'></tfoot><dl id='8ohcU'><fieldset id='8ohcU'></fieldset></dl></div>

                    <small id='8ohcU'></small><noframes id='8ohcU'>

                    1. <legend id='8ohcU'><style id='8ohcU'><dir id='8ohcU'><q id='8ohcU'></q></dir></style></legend>
                        <bdo id='8ohcU'></bdo><ul id='8ohcU'></ul>
                    2. <tfoot id='8ohcU'></tfoot>