0

私は周りを検索しましたが、答えが見つかりませんでしたか、それとも私のjsonコードに何かバグがあるのでしょうか?

JSON file:
{
  "html": {
    "content": "<div style=\"background-color: rgb(255, 255, 255); height: 11px; width: 111px;\"></div>"
  }
}

background-color: rgb(255, 255, 255); --> NO
background-color: #000000; --> OK

PHP:

$jsonPathSite = '/site/01.json';
$jsonFileSite = file_get_contents($jsonPathSite);
$jsonReadSite = jsonDecode($jsonFileSite,true);

// Saving the file
$jsonReadSite['html']['content'] = $content;

file_put_contents( $jsonPathSite, json_encode($jsonReadSite) );

RGB形式で保存できませんか?

しかし、HEX形式を使用した場合、jsonファイルは完全に問題ありません!

4

0 に答える 0