cara mendekode token jwt di 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])))));
Ankur