core/api/php/json.php

23 lines
425 B
PHP

<?php
/**
* json в массив и обратно
* https://snipp.ru/view/396
* https://github.com/snipp-ru/clean
*/
class json{
/**
* Предварительная обработка строки.
*/
static function to_j($txt){
return json_encode($txt, JSON_UNESCAPED_UNICODE);
}
/**
* Логический тип (0 или 1).
*/
static function from_j($txt){
return json_decode($txt, true);
}
}