* Json encode the issue with JSON_HEX_TAG.

This commit is contained in:
dingguodong
2021-08-31 15:22:37 +08:00
parent bb27425288
commit 3e7f292efc
+1 -1
View File
@@ -181,7 +181,7 @@ class baseEntry
{
header("Content-type: application/json");
header("HTTP/1.1 {$this->statusCode[$code]}");
echo json_encode($data);
echo json_encode($data, JSON_HEX_TAG);
exit;
}