Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Did the JSON module change?

by choroba (Cardinal)
on Mar 02, 2018 at 17:10 UTC ( [id://1210239]=note: print w/replies, xml ) Need Help??


in reply to Did the JSON module change?

That's why Cpanel::JSON::XS::Type exists:
#!/usr/bin/perl use warnings; use strict; use Cpanel::JSON::XS; use Cpanel::JSON::XS::Type; my $json = Cpanel::JSON::XS->new ->allow_nonref->allow_unknown->allow_blessed->pretty(1); my $type = { 'num' => JSON_TYPE_INT }; my $data1; $data1->{"num"} = "1"; my $body1 = $json->encode($data1, $type); print $body1; my $data2; $data2->{"num"} = 2; my $body2 = $json->encode($data2, $type); print $body2; my $data3; $data3->{"num"} = "3"; my $addr = $data3->{"num"} + 7; my $body3 = $json->encode($data3, $type); print $body3;
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: Did the JSON module change?
by nilesOien (Novice) on Mar 02, 2018 at 21:24 UTC

    This seems like the definitive option for editing the script.

    I think there's also an issue in how I've been managing packages, though, which I've touched on in another reply.

    Thanks!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1210239]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-20 02:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found