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 , 15 years ago | |
---|---|
File size: 377 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | require_once 'JSON/JSON.php'; |
4 | |
5 | function 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 | |
14 | function 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.