Skip to content

Instantly share code, notes, and snippets.

@untillnesss
Created July 22, 2020 06:17
Show Gist options
  • Save untillnesss/a1dd6ec3525b47899a85f14d8ec1efec to your computer and use it in GitHub Desktop.
Save untillnesss/a1dd6ec3525b47899a85f14d8ec1efec to your computer and use it in GitHub Desktop.
$imgPay = $this->input->post('uploadImgPayText');
$explodeImgPay = explode('data:image/', $imgPay);
$explodeImgPay = explode(';base64,', $explodeImgPay[1]);
$imgExt = $explodeImgPay[0];
$imgPay = $explodeImgPay[1];
$imgName = 'public/images/pay/' . $user_id . '-' . time() . '.' . $imgExt;
$file = file_put_contents('./' . $imgName, base64_decode($imgPay));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment