如何设置SWFUpload上传的文件夹?
我在文档中没有看到如何使用 SWFUpload 设置上传的文件文件夹。
有人能指出我正确的方向吗?
如果有帮助的话我正在使用 PHP 5。
I don't see in the documentation how to set the uploaded files folder with SWFUpload.
Can anyone point me to the right direction?
I'm using PHP 5 if it helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您所做的就是调用 PHP 脚本,该脚本会处理文件上传。
您可以打开调试,这将为您提供一个非常好的调试视图,了解正在发生的情况以及相关 PHP 文件的输出。
Flash 不处理上传,因为 Flash 实际上在客户端计算机上运行。
这是我使用的配置示例。
然后flash_upload.php有类似这样的东西(只是一个例子)
What you do is call a PHP script, and that script handles the file uploading.
You can turn on debug, this will give you a pretty nice debug view of what is happening, and the output of the PHP file in question.
The flash doesn't handle the uploading because the flash is actually running on the client machine.
Here's an example of the config I use.
Then flash_upload.php has something like this (just an example)
SWFUpload 被赋予一个 URL 以将上传发送到,例如 http://yourdomain.com/upload.php - 这个脚本决定了上传会发生什么。
有关详细信息,请参阅 PHP 手册中有关处理文件上传的部分。
SWFUpload is given a URL to send the upload to, e.g. http://yourdomain.com/upload.php - it is this script which determines what will happen to the upload.
See the PHP Manual section on Handling File Uploads for more information.