如何在没有任何php脚本的情况下上传图片?

发布于 2024-11-10 14:18:43 字数 439 浏览 0 评论 0原文

请告诉我我可以从 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 技术交流群。

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

发布评论

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

评论(2

伊面 2024-11-17 14:18:43

有一种方法可以从 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

深者入戏 2024-11-17 14:18:43

如果没有 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

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