PHP关于文件与文件夹 写入文件 文件权限 锁定文件
Posted cynchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP关于文件与文件夹 写入文件 文件权限 锁定文件相关的知识,希望对你有一定的参考价值。
一、文件权限
二、写入文件
【样例】:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML1.0 Transitional//EN"
<html xmlns="http://www.w3.org/1999/xhtml"xml:lang="en" lang="en">
<head>
</head>
<body>
<?php // Script 11.1 -add_quote.php
// Identify the file to use:
$file =‘../quotes.txt‘;
// Check for a form submission:
if ($_SERVER[‘REQUEST_METHOD‘] == ‘POST‘) { // Handle theform.
} // End of submitted IF.
// Leave PHP and display the form:
?>
<form action="add_quote.php"method="post">
</form>
</body>
三、锁定文件
四、读取文件
第一种方法:$data=file_get_contents($file);
另外一种方法:$data=file($file);
【例】:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML1.0 Transitional//EN"
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en"lang="en">
<head>
</head>
<body>
<h1>RandomQuetation</h1>
<?php
$data =file(‘../quotes.txt‘);
// Count the number of items in the array:
$n = count($data);
// Pick a random item:
$rand = rand(0, ($n -1));
// Print the quotation:
print ‘<p>‘ .trim($data[$rand]) .‘</p>‘;
?>
</body>
</html>
以上是关于PHP关于文件与文件夹 写入文件 文件权限 锁定文件的主要内容,如果未能解决你的问题,请参考以下文章