//使用file_get_contents将整个文件读入一个字符串
$file=file_get_contents('文件(txt、png等文件)');
$file_base64=base64_encode($file);
data:image/png;base64,$file_base64(base64串)