如何在没有任何php脚本的情况下上传图片?
请告诉我我可以从 iPhone 上传图像而不使用 php 或 .net 脚本吗?我通过点击 URL 找到了 php 代码
<?php
$uploaddir = '/myappname/uploads/';
$file = basename($_FILES['userfile']['name']);
$uploadfile = $uploaddir . $file;
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "http://www.mycompanywebsite.com/myappname/uploads/{$file}";
}
?>
,我认为图像将被上传,但是我可以在没有服务器端脚本帮助的情况下上传吗?
等待您的友好回复 :)
please tell me can i upload image from iphone without using php or .net script. i found a code of php
<?php
$uploaddir = '/myappname/uploads/';
$file = basename($_FILES['userfile']['name']);
$uploadfile = $uploaddir . $file;
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "http://www.mycompanywebsite.com/myappname/uploads/{$file}";
}
?>
by hitting URL i think image will be uploaded but can i upload without help of server side script?
Waiting for your kind reply
:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一种方法可以从 iPhone 上传照片,而无需使用服务器端脚本。您可以通过 FTP 传输照片。您需要您的服务器是 FTP 服务器。这不是世界上最安全的事情,但从技术上讲,所有工作都是在手机端完成的,无需服务器端代码。
FTP 示例代码
There is a way to upload a photo from the iPhone without using server side script. You could FTP the photo. You would need your server to be an FTP server. Not the most secure thing in the world, but technically all the work is done on the phone side without server side code.
FTP sample code
如果没有 PHP,您无法将文件上传到您的服务器/主机。 (或其他一些服务器端脚本)。
如果可能的话我可以破坏网络上的每个网站
You can't upload a file to your server/hosting without PHP. (Or some other server side script).
If that would be possibile I could deface every site on the net