作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<?php
// Get image string posted from Android App
$base=$_REQUEST['image'];
// Get file name posted from Android App
$filename = $_REQUEST['filename'];
// Decode Image
$binary=base64_decode($base);
header('Content-Type: bitmap; charset=utf-8');
$file = fopen('uploads/'.$filename, 'wb');
// Create File
fwrite($file, $binary);
fclose($file);
echo 'Image upload complete, Please check your php file directory';
?>
这是我的 php 代码,用于获取从 Android 应用程序发布的图像字符串和文件名。我需要为图像创建临时文件名。有人可以帮忙吗?
最佳答案
如果您想生成一个唯一的临时文件名,您可以使用 GUID 吗? http://php.net/manual/en/function.com-create-guid.php
关于php - 如何为从 Android 应用程序发布的图像创建临时文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46730937/
我是一名优秀的程序员,十分优秀!