Mysql数据库有一个包含urls base64_encoded
的列当我回应以下内容时:
$im_dec = base64_decode($row['image']);
echo $im_dec;
然后我使用这个URL作为我img的src:
$newImage = $dom->createElement('img');
$newImage->setAttribute("src", $im_dec);
$newImage->setAttribute("class", "articleImage");
$newTitle->appendChild($newImage);
当我检查html文档中的src属性时,我看到一个修改后的网址,其中&
被&
替换,=
被=
替换;
当然因为这个而没有显示图像...
我不知道如何避免它。我尝试了很多东西,但我认为base64编码可行...请帮助!