我正在使用以下内容从帖子数据上传图像。它可以在我的服务器上使用 php 版本:5.2.16
当我尝试使用 MAMP 和 PHP 版本 5.2.17 在本地服务器上运行完全相同的脚本时,不会创建文件。
if (isset($HTTP_RAW_POST_DATA))
{
// Get the data
$imageData=$HTTP_RAW_POST_DATA;
// Remove the headers (data:,) part.
// A real application should use them according to needs such as to check image type
$filteredData=substr($imageData, strpos($imageData, ",")+1);
// Need to decode before saving since the data we received is already base64 encoded
$unencodedData=base64_decode($filteredData);
echo "unencodedData: ".$unencodedData;
$key = microtime();
$key = md5($key);
// Save file.
$fp = fopen( '../../../uploadedImages/original/' . $key . '.jpg', 'wb' );
fwrite( $fp, $unencodedData);
fclose( $fp );
}
如果我在萤火虫中查看它,看起来帖子数据确实存在。任何想法为什么这在 mamp 中不起作用?