我有一个 php 变量,其中包含图像的整个源代码。我想要的是用它的属性 src、height 和 width 来回显标签,并通过邮件(即)发送图像的源代码。
$imagename = abc.jpg;
$concatpath = SITE_URL."/uploads/affiliatesAdv/".$imagename;
$imagesrc = '<a href="'.SITE_URL.'"><img src="'.$concatpath.'" height="200px" width="200px"></a>';
现在,当我回显 $imagesrc 时,它会显示图像。我怎样才能显示源代码?