这里是CODE.line no 62 https://pastebin.com/wTgeJjNR
// $ qus_img为空
$qus_imga = "data:image/jpeg;base64,".base64_encode($qus_img);
$pic = getImage($qus_imga);
function getImage($dataURI)
{
$img = explode(',',$dataURI,2);
$pic = 'data://text/plain;base64,'.$img[1];
$type = explode("/", explode(':', substr($dataURI, 0,
strpos($dataURI, ';')))[1])[1]; // get the image type
if ($type=="png"||$type=="jpeg"||$type=="gif") return
array($pic, $type);
return false;
}