Skip to content

Commit 00601e7

Browse files
authored
Change print to print_r
1 parent 844055a commit 00601e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

decode-header.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717

1818
try {
1919
$decode = JWT::decode($token, $key, array('HS256'));
20-
print $decode."\n";
20+
print_r($decode);
21+
print "\n";
2122
} catch (\Exception $e) {
2223
print "Error!\n";
2324
}

0 commit comments

Comments
 (0)