我有一个个人资料页面,我提供全名、电子邮件、密码值以使用 web 服务填写个人资料页面,如下面的方法
function signup($fullname,$email,$password)
{
$this->load->model('registration_model');
$results =$this->registration_model->register($email,$password,$devicetoken,$devicetype,$logintype);
echo json_encode($results);
}
如何从上述功能将图像上传到个人资料页面