我在使用PHP文件时遇到了一些麻烦。我的fopen()
电话失败,我无法解决原因。我对该文件具有完全权限(当前设置为777),我唯一能想到的是该文件已经打开,但我无法理解为什么会这样。我的代码由登陆PHP页面和动作PHP页面组成。登陆页面如下:
<!DOCTYPE HTML>
<html>
<head>
<title>Canteen Manager</title>
<link type="text/css" rel="stylesheet" href="style_common.css"/>
<link type="text/css" rel="stylesheet" href="style_addstock.css"/>
</head>
<body>
<div class="header">
<img src="images/aafclogo.png" class="aafclogo">
<h3>Add Stock</h3>
</div>
<p>Select Product:</p>
<form action="addstockaction.php" method="post" name="formExistingProduct">
<input type='hidden' name='productType' value='existing'>
<select name="products">
<?php
class Product {
public $name = "";
public $amount = "";
}
$myfile = fopen("stock.txt", "r") or die("Unable to open file!");
while(!feof($myfile)) {
$fileContents = $fileContents . fgets($myfile);
}
fclose($myfile);
$dictionary = json_decode($fileContents, true);
for ($i = 0; $i < count($dictionary); ++$i) {
echo "<option value=" . $i . ">" . $dictionary[$i]['name'] . " </option>";
}
?>
</select>
<input type="number" name="txtNumber" min="1"><br><br>
<input type="submit" value="Update Amount">
</form>
当用户提交表单时,它会调用以下PHP文件:
<!DOCTYPE HTML>
<html>
<head>
<title>Canteen Manager</title>
<link type="text/css" rel="stylesheet" href="style_common.css"/>
</head>
<body>
<?php
/*$myfile = fopen("stock.txt", "r") or die("Unable to open file!");
while(!feof($myfile)) {
$fileContents = $fileContents . fgets($myfile);
}
fclose($myfile);*/
$fileContents = file_get_contents("stock.txt");
echo $fileContents;
$dictionary = json_decode($fileContents, true);
$dictionary[$_POST['products']]['amount'] = $dictionary[$_POST['products']]['amount'] + $_POST['txtNumber'];
$json = json_encode($dictionary, true);
$writeFile = fopen("stock.txt", "w") or die("Unable to open file for writing!");
$txt = $json;
fwrite($writeFile, $txt);
fclose($writeFile);
echo "<p><strong>Added " . $_POST['txtNumber'] . " items to " . $dictionary[$_POST['products']]['name'] . "</strong></p><br><br>";
?>
<br><br><div class="buttonContainer">
<a href="addstock.php"><div class="button">
<p>Add More Items</p>
</div></a>
<a href="index.php"><div class="button">
<p>Home</p>
</div></a>
</div>
PHP文件在$writeFile = fopen("stock.txt", "w") or die("Unable to open file for writing!");
行中出现错误,当它出现'无法打开文件进行写入'时!线。
我做错了什么?
修改
我创建了一个测试PHP文件(称为test.php),并将其放在服务器上与我当前文件相同的位置。该文件仅包含以下代码:
<!DOCTYPE HTML>
<html>
<head>
<title>Canteen Manager</title>
<link type="text/css" rel="stylesheet" href="style_common.css"/>
<link type="text/css" rel="stylesheet" href="style_addstock.css"/>
</head>
<body>
<?php
$writeFile = fopen("stock.txt", "w") or die("Unable to open file for writing!");
$txt = $json;
fwrite($writeFile, '[{"name":"Boost","amount":10},{"name":"Chicken Noodles","amount":10},{"name":"Twix","amount":10}]');
//fwrite($writeFile, "test");
fclose($writeFile);
echo "<strong>Success</strong>";
?>
</body>
</html>
当我最初运行它时,它成功打开了文件,但是不会写入它。相反它会清除它。由于将该代码复制到我的实时文件,因此这两个文件都会收到我之前收到的错误。对我来说,这支持文件在某处开放的理论,因此无法再次打开。我以为它可能是我的FTP客户端,所以我关闭并尝试了,但同样的错误。我已确认文件(stock.txt)未在我的浏览器中打开,也未被笔记本电脑上的任何程序使用。
我真的被困在这上面了。有没有人有更好的方法来写入文件(请记住,此时我正在覆盖文件)。我非常感谢任何建议,无论是在解决我的问题方面,还是以不同的方式解决问题。
编辑2
我发现文件权限设置为644,尽管我将它们设置为777,所以我将它们设置回777并且没有收到模具警告。但是,当我运行代码时,我发现它没有写入文件,而只是清除它(清空它的字符)。我的编写代码在上面,但为了清楚起见,我将在下面复制它:
$fileContents = file_get_contents("stock.txt");
echo $fileContents;
$dictionary = json_decode($fileContents, true);
$dictionary[$_POST['products']]['amount'] = $dictionary[$_POST['products']]['amount'] + $_POST['txtNumber'];
$json = json_encode($dictionary, true);
$writeFile = fopen("stock.txt", "w") or die("Unable to open file for writing!");
$txt = $json;
fwrite($writeFile, $txt);
fclose($writeFile);
echo "<p><strong>Added " . $_POST['txtNumber'] . " items to " . $dictionary[$_POST['products']]['name'] . "</strong></p><br><br>";
有什么建议吗?
答案 0 :(得分:1)
确保文件的所有者是 apache 。
命令是 chown apache:apache stock.txt
它对我有用。
答案 1 :(得分:0)
我最终解决了这个问题,主要得益于@ParrisVarney的帮助。问题出在文件权限中。每次我上传我的文件的新版本(PHP或TXT),或者在我的FTP客户端编辑stock.txt
文件的在线版本时,它都会将文件权限重置为644.我不得不手动更改在每次上传之后继续回到777,然后才能打开文件。
至于写作问题,文本文件被清除,原因是我的json_encode
调用不正确。我有一个布尔值作为一个属性导致它失败。通过从true
移除$json = json_encode($dictionary, true);
并将其设为$json = json_encode($dictionary);
,我就可以让脚本编写数据。
感谢大家的帮助,非常感谢。
我希望这个答案可以帮助其他有类似问题的人。