當前位置:首頁 » 編程語言 » post圖片php

post圖片php

發布時間: 2022-07-29 14:50:41

A. php將post過來的$_FILES多張圖片同時保存在同一個文件夾

if(!isset($_FILES['userfile'])){
echo "失敗";

}else{

//文件夾不存在則創建文件夾(文件夾路徑:$dirname)
if (!file_exists($dirname){
mkdir($dirname);
}

$max_files=5; //設置最多上傳文件的個數
//遍歷圖片並存放至文件夾(圖片文件集合$src)
for($i=0;$i<$max_files;$i++){
//如果沒出錯
if($_FILES['userfile']['error'][$i]==0){
//設置完整存放路徑+文件名
$file_path=$dirname. "/" .$_FILES['userfile']['name'][$i];
//圖片正常讀寫就存放至文件夾
if (@fopen($src,'r')){
file_put_contents($file_path, $_FILES['userfile']);
}
}

}

}

B. 求解,php 怎麼獲取不了POST過來的圖片信息$_FILES['thumb']['tmp_name'],拜託幫幫忙了

頁面下面加上
print_r($_FILES['thumb']);

再提交一個文件看看頁面顯示的內容。

C. PHP POST請求後返回的是圖片,如何

$_FILE['pic']返回二維數組,然後就可以操作了

D. php 非同步上傳圖片幾種方法總結

代碼如下
form action="upload.php" id="form1" name="form1" enctype="multipart/form-data" method="post" target="uploadIframe"> <!--上傳圖片頁面 --> </form> <iframe name="uploadIframe" id="uploadIframe" style="display:none"></iframe>
然後後台處理完上傳圖片邏輯後返回給前台,利用ajax修改當前頁面DOM對象實現無刷新上傳圖片的友好功能。
實例
代碼如下
a.html <form enctype="multipart/form-data" action="a.php" target="ifram_sign" method="POST"> <input name="submit" id="submit" value="" type="hidden"> <label>上傳文件: <input name="test_file" type="file" id="test_file" size="48"></label> <input type="image" value="立即上傳" id="submit_btn"> </form><iframe name="ifram_sign" src="" frameborder="0" height="0" width="0" marginheight="0" marginwidth="0"></iframe>
php代碼:
代碼如下
<?php
if ($_files["test_file"]["error"] > 0)
{
echo "Error: " . $_files["test_file"]["error"] . "<br />";
}
else
{
//這里的判斷圖片屬性的方法就不寫了。自己擴展一下。
$filetype=strrchr($_files["test_file"]["name"],".");
$filetype=substr($filetype,1,strlen($filetype));
$filename="img/".time("YmdHis").".".$filetype;
move_uploaded_file($_files["test_file"]["tmp_name"],$filename);
echo '<script >alert(1)</script>';
$return="parent.document.getElementByIdx_x('mpic".$pageset_id."').innerhtml='".$dataimgpath."'";
echo "<script >alert('上傳成功')</script>";
echo "<script>{$return}</script>";
}
?>
其實jquery ajax圖片非同步上傳
html:
<!DOCTYPE html PUBLIC "-//W3C//dtd Xhtml 1.0 transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US">
<head>
<title>圖片非同步上傳</title>
</head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<link type="text/css" rel="stylesheet" href="css/index.css">
<body>
<div class="frm">
<form name="uploadFrom" id="uploadFrom" action="upload.php" method="post" target="tarframe" enctype="multipart/form-data">
<input type="file" id="upload_file" name="upfile">
</form>
<iframe src="" width="0" height="0" style="display:none;" name="tarframe"></iframe>
</div>
<div id="msg">
</div>
</body>
</html>

index.js
$(function(){
$("#upload_file").change(function(){
$("#uploadFrom").submit();
});
});

function stopSend(str){
var im="<img src='upload/images/"+str+"'>";
$("#msg").append(im);
}

upload.php
<?php
$file=$_files['upfile'];
$name=rand(0,500000).dechex(rand(0,10000)).".jpg";
move_uploaded_file($file['tmp_name'],"upload/images/".$name);
//調用iframe父窗口的js 函數
echo "<script>parent.stopSend('$name')</script>";
?>

非同步上傳圖片幾種方法

E. PHP上傳圖片的操作用POST方式傳遞到處理頁面後是直接用$file得到上傳的文件還是一定要用$POST['file']得到

html:

<form action="upload.php" method="post" enctype="multipart/form-data" >
<input type="file" name="file"/>
<input type="submit" name="submit" value="Submit" />
</form>
php:

$_FILES["file"] //文件

$_FILES["file"]["type"] //文件類型
$_FILES["file"]["size"] //文件尺寸

F. php環境無法上傳圖片的幾種解決辦法

第二點、 php.ini配置文件(以下幾小點) 1、file_uploads 是否開啟 on 必須開啟 是否允許HTTP文件上傳;確定上傳大小 post_max_size = 8M (伺服器端) 2、PHP接受的POST數據最大長度 (客戶端) 要上傳大文件,該值必須大於"upload_max_filesize" 如果配置腳本中激活了內存限制,"memory_limit"也會影響文件上傳。 一般說來,"memory_limit"應該比"post_max_size"要大 允許上傳的文件的最大尺寸 upload_max_filesize = 1204KB3、每個腳本最大允許執行時間, 按秒計 這個參數有助於阻止劣質腳本無休止的佔用伺服器資源。 注: "max_execution_time"僅影響腳本本身的運行時間。 任何其它花費在腳本運行之外的時間,如用system()/sleep()函數的使用、資料庫查詢、文件上傳等都不包括在內。 在安全模式下,你不能用ini_set()在運行時改變這個設置,每個腳本接收輸入數據的最大允許時間(POST, GET, upload), 按秒計設定一個腳本所能夠申請到的最大內存位元組數。 這有助於防止劣質腳本消耗完伺服器上的所有內存,要使用此指令必須在編譯的時候激活。

熱點內容
c語言時間變數 發布:2025-01-24 10:40:24 瀏覽:868
ppiandroid 發布:2025-01-24 10:25:50 瀏覽:1000
兒童壓縮機 發布:2025-01-24 10:25:09 瀏覽:74
蘋果的允許訪問在哪裡 發布:2025-01-24 10:24:32 瀏覽:31
橡皮艇存儲 發布:2025-01-24 10:21:56 瀏覽:771
360的新機什麼配置 發布:2025-01-24 10:04:22 瀏覽:951
榮耀10方舟編譯器不卡頓了 發布:2025-01-24 09:59:59 瀏覽:502
章魚腳本助手 發布:2025-01-24 09:55:10 瀏覽:334
手游腳本論壇 發布:2025-01-24 09:54:20 瀏覽:30
沈陽螺桿空氣壓縮機 發布:2025-01-24 09:54:09 瀏覽:594