如何在PHP映像中转换字节数组?

时间:2018-03-09 03:44:58

标签: php image upload

我在Java中使用此代码来转换图像中的字节数组。

final byte[] imageData = IOUtil.toByteArray(request.raw().getInputStream());
final FileOutputStream outputStream = new FileOutputStream("./images/" + 
imageId.toString() + ".png");
outputStream.write(imageData);
outputStream.close();

但是在PHP中我不起作用。

$file = file_get_contents("php://input");
$photoId = $_GET['photoId'];
file_put_contents("photos/" . $photoId . ".png", $file);

你能帮我吗?

0 个答案:

没有答案