PHP关于文件与文件夹(1) 写入文件 文件权限 三、锁定文件
2021-06-26 15:06
YPE html PUBLIC "-//W3C//DTD XHTML1.0 Transitional//EN">
一、文件权限
二、写入文件
【样例】:
br>
// Identify the file to use:
$file =‘../quotes.txt‘;
// Check for a form submission:
if ($_SERVER[‘REQUEST_METHOD‘] == ‘POST‘) { // Handle theform.
Your quotation has beenstored.
Yourquotation could not be stored due to a systemerror.
} // End of submitted IF.
// Leave PHP and display the form:
?>
三、锁定文件
四、读取文件
第一种方法:$data=file_get_contents($file);
另外一种方法:$data=file($file);
【例】:
br>
RandomQuetation
$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: ‘ .trim($data[$rand]) .‘
print ‘
?>
上一篇:HTML5图形绘制
文章标题:PHP关于文件与文件夹(1) 写入文件 文件权限 三、锁定文件
文章链接:http://soscw.com/index.php/essay/98115.html