Answers for "how to decode jwt token in php"

PHP
-1

how to decode jwt token in php

you can use this one line to decode the jwt token
  
<?php
$token = "your encrypted token goes here";
print_r(json_decode(base64_decode(str_replace('_', '/', str_replace('-','+',explode('.', $token)[1])))));
Posted by: Guest on March-26-2021

Browse Popular Code Answers by Language