We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 647a694 commit 3b60fcdCopy full SHA for 3b60fcd
decode.php
@@ -14,4 +14,6 @@
14
$token='eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.IntcInN0YXR1c1wiOlwic3VjY2Vzc1wiLFwiZGF0YTFcIjpcInRlc3QxXCIsXCJkYXRhMlwiOlwidGVzdDJcIixcImRhdGEzXCI6XCJ0ZXN0M1wiLFwiZGF0YTRcIjpcInRlc3Q0XCIsXCJkYXRhNVwiOlwidGVzdDVcIn0i.lTHo7zbetlA2su017EVukpSzL1Zj60k7mEZZHxAlz7k';
15
$decode = JWT::decode($token, $key, array('HS256'));
16
print $decode."\n";
17
-print json_decode($decode)."\n";
+$object=json_decode($decode);
18
+print_r($object);
19
+print "\n";
0 commit comments