Home Backend Development PHP Tutorial Summary of various methods of creating files in php_PHP tutorial

Summary of various methods of creating files in php_PHP tutorial

Jul 13, 2016 pm 04:56 PM
fi fopen php create Summarize us document method use of

There are many ways to create files in php. The two most commonly used methods are fopen and file_put_contents. Let me give you a detailed introduction. Students who need to know more can refer to it.

Create php file

The code is as follows Copy code
 代码如下 复制代码

$str="";
file_put_contents('test.php',$str);//使用脚本创建一个php文件
?>

$str="";
file_put_contents('test.php',$str);//Use a script to create a php file
?>

Example 2
 代码如下 复制代码

if ($argc != 2) {
die("Usage: php mkphp.php filename");
}
array_shift($argv);
$cat= $argv[0];
file_put_contents($cat.".php", "

?>");

The code is as follows Copy code

if ($argc != 2) {
die("Usage: php mkphp.php filename");
}
array_shift($argv);
$cat= $argv[0];
file_put_contents($cat.".php", "

代码如下 复制代码

$fp=fopen("1.txt","w+");//fopen()的其它开关请参看相关函数
$str="我加我加我加加加";
fputs($fp,$str);
fclose($fp);
?>

?>");

Use fopen to create files
 代码如下 复制代码

$filename="test.txt";
$fp=fopen("$filename", "w+"); //打开文件指针,创建文件
if ( !is_writable($filename) ){
die("文件:" .$filename. "不可写,请检查!");
}
//fwrite($filename, "anything you want to write to $filename.";
fclose($fp); //关闭指针

The code is as follows Copy code
<🎜> <🎜>$fp=fopen("1.txt","w+");//For other switches of fopen(), please refer to related functions
$str="I add, I add, I add, add, add";
fputs($fp,$str);
fclose($fp);
?>

The above has not been considered in any way. If we want to be more comprehensive, we must first determine the permissions of the directory where the file you want to create is located; the recommended device is 777. Then, it is recommended to use an absolute path for the name of the new file.
The code is as follows Copy code
$filename="test.txt";
$fp=fopen("$filename", "w+"); //Open the file pointer and create the file
if ( !is_writable($filename) ){
​​​die("File:" .$filename. "Not writable, please check!");
}
//fwrite($filename, "anything you want to write to $filename.";
fclose($fp); //Close pointer

'r' opens the file as read-only, and the file pointer points to the beginning
'r+' opens the file for reading and writing, and the file pointer points to the beginning
'w' opens the file for writing, points to the beginning of the file, and sets the length of the original text to 0. If the file does not exist ‘‘Create a new file –
'w+' opens the file in read-write mode, points to the beginning of the file, and sets the length of the original text to 0. If the file does not exist ‘‘Create a new file –
'a' opens the file for writing, and the file pointer 'points to the end of the file. If the file does not exist ‘‘Create a new file –
'a+' opens the file in read-write mode, and the file pointer ' points to the end of the file. If the file does not exist ‘‘Create a new file –
'b' If the text and binary files of the operating system are different, you can use "‘", but UNIX systems do not need to use "parameters".

The code is as follows
 代码如下 复制代码

///创建文件
function creat_file($PATH){
   $sFile = "test.html";
   if (file_exists($PATH.$sFile)) {
    creat_file();
   } else {
    $fp= fopen($PATH.$sFile,"w");
    fclose($fp);
   }
   return $sFile;
}

Copy code
///Create file function creat_file($PATH){

$sFile = "test.html";

if (file_exists($PATH.$sFile)) { } else { $fp= fopen($PATH.$sFile,"w"); fclose($fp); } Return $sFile; }
http://www.bkjia.com/PHPjc/631558.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631558.htmlTechArticlephp There are many ways to create files. The two most commonly used methods are fopen and file_put_contents to create files. , let me give you a detailed introduction below. If you need to know more...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles