GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Badger::Codec::JSON(3) User Contributed Perl Documentation Badger::Codec::JSON(3)

Badger::Codec::JSON - encode/decode data using JSON

    use Badger::Codec::JSON;
    my $codec   = Badger::Codec::JSON->new();
    my $encoded = $codec->encode({ msg => "Hello World" });
    my $decoded = $codec->decode($encoded);

This module implements a subclass of Badger::Codec which uses the JSON::XS or JSON module (whichever you have installed) to encode and decode data to and from JSON. It is little more than an adapter module to fit JSON into the Badger::Codec mould.

Encodes the Perl data in $data to a JSON string. This method is a wrapper around the internal the encode_json() subroutine.

    $encoded = Badger::Codec::JSON->encode($data);

Decodes the encoded JSON string in $json back into a Perl data structure. This method is a wrapper around the internal the decode_json() subroutine.

    $decoded = Badger::Codec::JSON->decode($encoded);

This method returns a reference to the real subroutine that's doing all the encoding work, i.e. the internal "encode_json()" subroutine.

This method returns a reference to the real subroutine that's doing all the decoding work, i.e. the "decode_json()" subroutine in JSON.

This is the internal subroutine that encodes the JSON data. It delegates to the JSON::XS or JSON module, depending on which you have installed.

This is the internal subroutine that decodes the JSON data. As per encode_json(), it delegates the task to the JSON::XS or JSON module.

Andy Wardley <http://wardley.org/>

Copyright (C) 2005-2009 Andy Wardley. All rights reserved.

Badger::Codecs, Badger::Codec, JSON
2016-12-12 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.