Perl 中的 json 和 json::PP 有什么区别?
在 opensips 中编写 perl 脚本时使用 Json 和 Json:PP 时遇到此错误
ERROR:core:XS_OpenSIPS__Message_log:
perl warning: Prototype mismatch: sub main::decode_json ($) vs none.
我对这些代码有疑问:
my %postObject = ("callId" => $callID);
$postObject{'endTime'} = time() . "";
$postObject{'key'} = "12345@qwerty";
my $post_data = encode_json \%postObject;