0
美好的一天,這是我第一次在這裏發佈。錯誤500圖像base64
我想用被編碼爲base64要上傳的圖片在我的域中的圖像, 我的形象完全被上傳到服務器,但我仍然得到一個服務器錯誤500, memory_limit的我php.ini文件是128M`
我使用的XAMPP服務器
<?php
header('Content-type : bitmap; charset=utf-8');
$encoded_string = $_POST['string_encoded']; //encoded string
$imagename = 'image.png';
$decoded_string = base64_decode($encoded_string);
$path = 'imageses/'.$imagename;
$file = fopen($path, 'wb');
fwrite($file, $decoded_string);
fclose($file);
?>`
我試圖使php_ini中的memory_limit = 512M然後保存,但輸出仍然是相同的,我只是刪除$ _POST方法並在其中輸入編碼的字符串默認值,它總是顯示我相同的錯誤 –
@MarkDylanBMercado文件大小是多少? –
這是一個只有5.57 kb文件大小的png圖像文件。 –