<?php
include("apiconfig.php");
global $api_key;
foreach($_REQUEST as $k=>$val)
{
$_REQUEST[$k]=input_clean_string( $val);
}
if(isset($_REQUEST['api_key']) && !empty($_REQUEST['api_key']) && $_REQUEST['api_key']==$api_key && isset($_REQUEST['user_id']) && !empty($_REQUEST['user_id']) ){
$user_id=$_REQUEST['user_id'];
$profile_image=file_get_contents('php://input');
if ($profile_image) {
$sql="UPDATE users SET profile_image='".$profile_image."' WHERE user_id=".$user_id;
mysql_query($sql);
}
echo $user= get_userdata($user_id);
}else{
echo json_encode(array('errormsg' => 'Invalid access.'));
}
这里我没有得到profile_image。我正在以binery格式将图像数据存储到表中(使用blob,我正在存储数据)。这里$profile_image
为空
答案 0 :(得分:0)
尝试使用stream_get_content函数而不是file_get_content。如果您获得资源类型。
$ profile_image = stream_get_content('php:// input');