i want to convert data url to image and save it in codeigniter folder
private function _convertToImg($data){ //$data is the data url
$encodedData = str_replace(' ','+',$data);
$decodedData = base64_decode($encodedData);
file_put_contents('/../../uploads/newImage.JPG',$decoded);
}
but it resulting an error
Message: file_put_contents(/../../uploads/newImage.JPG): failed to open stream: No such file or directory
i dont know why this happening, i am not much familiar with php and codeigniter
thank you in advance!