PHP 写入文件...需要帮助
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在那里使用了正确的代码,有什么意义?
另请注意,您使用逗号而不是点来连接字符串:
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:
在您的示例中,使用 POST 打开文件是一种不安全的方法,因此甚至不要考虑这种技巧 :P
您可以使用简单的方法读取和写入文件
file_get_contents();
file_put_contents();
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();
file_put_contents();