标签:
base64 加密成图片
1 $imgtxt = file_get_content(‘test.jpg‘); 2 3 file_put_content(‘test.txt‘, base64_encode($imgtxt));
1 $img = base64_decode($imgdata_base64); 2 file_put_contents(‘./test.jpg‘, $img);
标签:
原文地址:http://www.cnblogs.com/xiaolang1/p/4320582.html