我正在测试我的一些像素火灾,我有以下问题。我有一个页面请求信息:
<?
$pixel = file_get_contents("http://127.0.0.1/api/v1/pixel/preq/pixel/10102.json");
echo $pixel;
返回:
{"code":200,"data":"<script>\r\nalert(\"Cool JS Pixel\");\r\n<\/script>"}
但是,我有两个问题,第一个是“安全” ,并且如果我尝试解码字符串\r\n
则已转义:/
<?
$pixel = file_get_contents("http://127.0.0.1/api/v1/pixel/preq/pixel/10102.json");
echo json_decode($pixel);
我收到以下错误:
Catchable fatal error: Object of class stdClass could not be converted to string in plugins\plg_pixelwise\test.php on line 3