PHP 写入文件...需要帮助

发布于 2024-08-29 08:18:26 字数 271 浏览 6 评论 0原文

<?php
$title = $_POST['title'];
$filename = $title , ".php";
$fh = fopen($filename, 'w') or die ("can't open file");
$stringData = $title;
fwrite($fh, $stringData);
$stringData = $blog;
fwrite($fh, $stringData);
fclose($fh);
?>

这只是一个示例。正确的代码是什么?

<?php
$title = $_POST['title'];
$filename = $title , ".php";
$fh = fopen($filename, 'w') or die ("can't open file");
$stringData = $title;
fwrite($fh, $stringData);
$stringData = $blog;
fwrite($fh, $stringData);
fclose($fh);
?>

This is only a sample. What is the correct code for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

皇甫轩 2024-09-05 08:18:26

您在那里使用了正确的代码,有什么意义?

另请注意,您使用逗号而不是点来连接字符串:

$filename = $title , ".php";

You are using the correct code there, what is the point?

Also note that you are using a comma rather than a dot to concatenate strings at:

$filename = $title , ".php";
甚是思念 2024-09-05 08:18:26

在您的示例中,使用 POST 打开文件是一种不安全的方法,因此甚至不要考虑这种技巧 :P

您可以使用简单的方法读取和写入文件

file_get_contents();

echo $fileData = file_get_contents('filename.txt');

file_put_contents();

$data= 'some data';
// Write the contents back to the file
file_put_contents("filename.txt", $data);

In your example opening a file using POST is an insecure method, so don't even think about this kinda tricks :P

You can use file read and write in simple method

file_get_contents();

echo $fileData = file_get_contents('filename.txt');

file_put_contents();

$data= 'some data';
// Write the contents back to the file
file_put_contents("filename.txt", $data);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文