gpt4 book ai didi

php - 如何为从 Android 应用程序发布的图像创建临时文件名

转载 作者:行者123 更新时间:2023-11-29 19:07:14 26 4
gpt4 key购买 nike

<?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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com