10

ファイルの編集/更新機能に関する同様の問題をたくさん読んだ後、どれもうまくいかなかったので、助けを求めたいと思います。

.txtPHPからドキュメントを編集しようとしています。私はこれらのことを試しました:

  1. これは、私がここで読んだ最後のコードであり、機能しませんでした。

    $data_to_write = "$_POST[subject]";
    $file_path = "text/" + $row['name'];
    $file_handle = fopen($file_path, 'w'); 
    fwrite($file_handle, $data_to_write);
    fclose($file_handle);
    
  2. そして、これは私の以前の試みです:

    $new_contents = "$_POST[subject]\n";
    $path = "text/$row[name]";
    file_put_contents($path, $new_contents);
    

誰かがこれを正しい方法で行う方法を説明してくれることを願っています。ありがとうございました。

これは私のコードのすべてです:

<?php
if(isset($_GET['id']))
{
$edit = mysql_query("SELECT * FROM text_area WHERE text_id=$_GET[id]");
$row = mysql_fetch_assoc($edit);
$contents = file_get_contents($row['content']);
?>
<form action="" name="form" method="post">
<input type="hidden" name="id" value="<?php echo $row['text_id']; ?>" /><br />
<label for="">Заглавие:</label><br />
<input type="text" name="title" style="width:500px;" value="<?php echo $row['subject'] ?>" /><br />
<select name="opt">
<option value="0"></option>
<?php

$result = mysql_query("SELECT * FROM image_area");
while ($row = mysql_fetch_array($result))
{
        echo "<option value=" . $row['path'] . ">" . $row['name'] . "</option>
            ";  
    }

?>
</select><input type="button" name="sumbitP" value="Choose" onclick="addtext();" /><a href="../image_list.php" target="_blank">Image list</a><br />
<textarea rows="10" cols="50" name="text" id="markItUp"><?php echo $contents ?></textarea><br />
<input type="submit" name="sumbitT" value="Update" />
<input type="reset" value="Reset" />

</form>
<?php
}
?>
<?php

if(isset($_POST['id']))
{
    if(mysql_query("UPDATE text_area SET title='$_POST[subject]' WHERE text_id ='$_POST[id]'"))
    {

$data_to_write = "" . $_POST['text'];
$file_path = "text/$row[name]";
$file_handle = fopen($file_path, 'w');
fwrite($file_handle, $data_to_write);
fclose($file_handle);

        echo '<br><br><p align="center">Everything is ok</p>';
    } else {
        echo '<br><br><p align="center">Everything is not ok</p>' ;
    }
?>

役に立つかもしれない何かを追加するだけです:
Googleで答えを見つけることができないこのエラーが発生しています。
Warning: fopen(text/) [function.fopen]: failed to open stream: Is a directory in

4

6 に答える 6

6

変更するだけです:

$file_path = "text/" + $row['name'];

これに:

$file_path = "text/" . $row['name'];

PHP の連結演算子は.(not +)

ディレクトリtextが存在することを確認してください。そうでない場合は、確認してから書き込むことをお勧めします。

$data_to_write = $_POST['subject'];
$file_path = "text/" . $row['name'];

if ( !file_exists("text") )
    mkdir("text");

$file_handle = fopen($file_path, 'w'); 
fwrite($file_handle, $data_to_write);
fclose($file_handle);
于 2013-09-18T07:15:16.320 に答える
5

file_get_contentsファイルのテキストを取得するには、を使用する必要があります。

$file_path= "text/" . $row['name'];
// Open the file to get existing content
$current = file_get_contents($file_path);
// Append a new person to the file


$data_to_write.= $_POST[subject]."\n";
// Write the contents back to the file
file_put_contents($file_path, $data_to_write);

ドキュメントを見る

于 2013-09-18T07:02:44.830 に答える