<?php
namespace plugin\func\process;
/**
* JWT解密
*/
class DejwtDejwt{
/**
* jwt解密
*/
public function dejwt($val){
try {
$temp = explode(".",$val);
for ($i = 0; $i < count($temp); $i++) {
if (count($temp)-1>$i) {
$temp[$i] = base64_decode($temp[$i]);
}
}
return $temp[1];
} catch (Exception $error) {
return '{"error":"error"}';
}
}
}
?>