标签: php ios mysql
从ios我们使用以下方法发送图像。
imageData=UIImageJPEGRepresentation(image, 0.3);
在后端php代码中,我正在读取数据
$handle = fopen("php://input", "rb"); $contents = stream_get_contents($handle); fclose($handle);
我正在尝试将图像数据从php保存到mysql表。它不起作用。请给出一个解决方案。