728x90
[원문] http://fosun.tistory.com/entry/php4-php51X%EB%8C%80%EC%97%90%EC%84%9C-json-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0
if (!function_exists('json_decode')) {
function json_decode($content, $assoc=false) {
require_once 'classes/JSON.php';
if ($assoc) {
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
}
else {
$json = new Services_JSON;
}
return $json->decode($content);
}
}
if (!function_exists('json_encode')) {
function json_encode($content) {
require_once 'classes/JSON.php';
$json = new Services_JSON;
return $json->encode($content);
}
}
728x90
'php' 카테고리의 다른 글
mysql dbdriver call store procedure in codeigniter(ci) (0) | 2018.12.17 |
---|---|
curl 없이 post 데이터 주고 받기 (0) | 2016.05.31 |
php 에서 _POST 대신 바로 변수명으로 데이터 전송 EGPCS (Environment, Get, Post, Cookie, and Server) (0) | 2013.10.22 |
13 permission denied access (0) | 2013.09.23 |
PHP 및 httpd.conf 내용중 기본적인 체크 (0) | 2013.08.16 |
댓글