我四处寻找,找不到答案,或者这只是我的 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 文件完全没问题!