标签:style http io color ar os 使用 for sp
一、文件权限
二、写入文件
【例子】:
<!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关于文件与目录(1) 写入文件 文件权限 三、锁定文件
标签:style http io color ar os 使用 for sp
原文地址:http://blog.csdn.net/zyu67/article/details/40822785