如何使用base-64源创建Image对象?

时间:2015-08-13 13:01:59

标签: javascript php image

我有一个远程网页,我在其上使用CURL和DOMDocument来检索图像的src属性。

我使用以下代码,在PHP echo中混合JS

<?php 

$toEcho = "";
$toEcho .= // some stuff here...
$toEcho.="
<script>

    //I create the object
    var img = new Image();

    //I set the source with the PHP variable : I get an error because of unexpected token ":"
    img.src = $imgsrc;

</script>"
echo $toEcho;
?>

我查看了源代码,它是有效的,并在我的浏览器中正确显示。

这可能来自哪里?

1 个答案:

答案 0 :(得分:3)

像这样设置来源:

img.src = '$imgsrc';