我正在使用 php on_start 和 ob_get_contents 来回显 html 并存储在变量中。但是,当我 json 编码并检查输出时,它不会输出整个字符串。谁能帮忙指出我做错了什么
ob_start();
echo'<a href=\"javascript:pixlr.edit({image:\"http://mywebite.com/uploads/$photo\", title:\" $photoFileNameProper\", service:\"express\", exit:\"http://mywebsite.com/home\", method:\"get\", locktarget: \"true\", target:\"http://mywebsite.com/plixr.php\", locktitle :\"true\"});\" id=\"uploadedPhoto\" title=\"click to enhance photo\"><img src=\"images/editphotohover.png\"/></a>\"';
$photo = ob_get_contents();
ob_end_clean();
我只得到 json 编码输出中的结束锚标记