source: trunk/www.guidonia.net/wp/wp-content/plugins/fbconnect/facebook-client/jsonwrapper/jsonwrapper_inner.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 377 bytes
Line 
1<?php
2
3require_once 'JSON/JSON.php';
4
5function json_encode($arg)
6{
7 global $services_json;
8 if (!isset($services_json)) {
9 $services_json = new Services_JSON();
10 }
11 return $services_json->encode($arg);
12}
13
14function json_decode($arg)
15{
16 global $services_json;
17 if (!isset($services_json)) {
18 $services_json = new Services_JSON();
19 }
20 return $services_json->decode($arg);
21}
22
23?>
Note: See TracBrowser for help on using the repository browser.