JSON 데이터 DB에 넣을때, 데이터를 이쁘게 해주는 함수(JSON_PRETTY_PRINT)
마스터욱
0
17
0
0
2025-02-08 13:45:52
function arrayToJsonWithBackticks($array) {
// 배열을 JSON 문자열로 변환
$json = json_encode($array, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
// 싱글쿼터(')와 더블쿼터(")를 백틱(`)으로 변환
$jsonWithBackticks = str_replace(['"', "'"], '`', $json);
return $jsonWithBackticks;
}