fopen 从 AJAX 请求调用
我正在构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
其实听起来很简单。您只需发送 AJAX 请求:
在 PHP 中只需要:
显然您需要更多授权,预定义的保存
$dir
并使用basename()
只是最低限度的安全预防措施。That sounds very simple actually. You just send your AJAX request:
And in PHP only need:
Obviously you need a bit more authorization, a pre-defined save
$dir
and usingbasename()
is only the minimum security precaution.一样执行
使用 jQuery,您将像使用文本字段代替常量 您的值。例如
$ 函数中的 filename 和 content 是文本字段的 ID。
Use jQuery and you'll do it like
Instead of constants you can use textfields for your values. e.g.
filename and content within the $-function are the ids of your textfields.