使用php

时间:2017-05-19 19:23:03

标签: php html json

我使用php循环浏览json对象并尝试在json对象中显示图像作为div的背景图像。

我的json对象如下所示:

{
    "1.49514754373E+12": {
        "description": "This is amazing!",
        "fileNames": [
            "3.jpg"
        ],

    }
}

我用来在我的html中显示图像的我的php文件看起来像这样

<?php
    $json = file_get_contents('auction.json');
    $json = json_decode($json);

    foreach($json as $obj){
      echo "<p>" .$obj->description . "</p>";

      //loop through the array of images
      for ($x=0; $x < count($obj->fileNames); $x++) {
         echo "<div style='background-image: url('" .$obj->fileNames[$x]."');'>";
      }

    }
?>

我遇到的问题是它正在设置像这样的HTML

<div style="background-image: url(" 3.jpg');'></div>

谁能看到我做错了什么?

1 个答案:

答案 0 :(得分:2)

我用双引号包装了样式值,并使用\对其进行了转义。

echo "<div style=\"background-image: url('" . $obj->fileNames[$x] . "');\">";