fopen 从 AJAX 请求调用

发布于 2024-11-16 21:18:10 字数 103 浏览 0 评论 0原文

我正在构建一个 Web 应用程序,需要通过 AJAX 向 PHP 脚本发送文本和文件名(当然与 Javascript 源在同一位置),并且 PHP 脚本应该将此文件保存在服务器上,但如何制作?

I'm building a WebApp that needs to send a text and a filename through AJAX to the PHP script(on the same place as the Javascript source of course) and the PHP script should save this file on the server, but how to make this?

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

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

发布评论

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

评论(2

指尖凝香 2024-11-23 21:18:10

其实听起来很简单。您只需发送 AJAX 请求:

$.post("file.php", {filename:"text1.txt", text:"..."});

在 PHP 中只需要:

file_put_contents($dir.basename($_POST["filename"]), $_POST["text"]);

显然您需要更多授权,预定义的保存 $dir 并使用 basename() 只是最低限度的安全预防措施。

That sounds very simple actually. You just send your AJAX request:

$.post("file.php", {filename:"text1.txt", text:"..."});

And in PHP only need:

file_put_contents($dir.basename($_POST["filename"]), $_POST["text"]);

Obviously you need a bit more authorization, a pre-defined save $dir and using basename() is only the minimum security precaution.

梦途 2024-11-23 21:18:10

一样执行

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>

<script type="text/javascript">
$.post('yourscript.php', {filename: 'output.txt', content: 'hello world'});
</script>

使用 jQuery,您将像使用文本字段代替常量 您的值。例如


$.post('yourscript.php', {filename: $('#filename').val(), content: $('#content').val()});

$ 函数中的 filenamecontent 是文本字段的 ID。

Use jQuery and you'll do it like

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>

<script type="text/javascript">
$.post('yourscript.php', {filename: 'output.txt', content: 'hello world'});
</script>

Instead of constants you can use textfields for your values. e.g.


$.post('yourscript.php', {filename: $('#filename').val(), content: $('#content').val()});

filename and content within the $-function are the ids of your textfields.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文