我是php初学者 我有一个这样的 php 文件,可以将文件上传到数据库中,但我不需要 html 部分。我必须使用 ur-6ren">
gpt4 book ai didi

php - 如何在没有html的情况下仅使用url在php中上传文件?

转载 作者:可可西里 更新时间:2023-11-01 16:37:25 26 4
gpt4 key购买 nike

<?php
include_once 'dbconfig.php';
?>
<form method="post" enctype="multipart/form-data">
<table width="350" border="0" cellpadding="1" cellspacing="1" class="box">
<tr>
<td width="246">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000">
<input name="userfile" type="file" id="userfile">
</td>
<td width="80"><input name="upload" type="submit" class="box" id="upload" value=" Upload "></td>
</tr>
</table>
</form>

<?php

$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

$fp = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);

if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
}

$query = "INSERT INTO upload (name, size, type, content ) ".
"VALUES ('$fileName', '$fileSize', '$fileType', '$content')";

mysql_query($query) or die('Error, query failed');
include 'library/closedb.php';

echo "<br>File $fileName uploaded<br>";

?>

我是php初学者

我有一个这样的 php 文件,可以将文件上传到数据库中,但我不需要 html 部分。我必须使用 url 将文件路径直接提供给 php,有没有办法做到这一点? .

我的确切问题是我需要我的 C# 程序与服务器通信以上传和下载文件,我只需要使用 URL 发送它所以我如何发送 url 中的实际路径而不需要键入浏览器html中的路径

最佳答案

将这些内容保存到任何 php 文件中,而不是每当您使用 f= 链接到该文件时点击此 url,它将将该文件保存到您指定的文件夹中,我只是使用该 php 文件所在的当前文件夹。

没有安全检查,因此它可以抓取任何文件,确保添加最终检查以执行身份验证并避免注入(inject)脚本。

$file = $_GET['f']; 
$res = explode('/',parse_url($file)['path']);
$filename = $res[count($res)-1];
file_put_contents($filename,file_get_contents($file));

希望对你有帮助

问候

关于php - 如何在没有html的情况下仅使用url在php中上传文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30390677/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com