core.php 276 Bytes
Newer Older
Liang Wu's avatar
Liang Wu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
// show error reporting
error_reporting(E_ALL);
 
// set your default time-zone
date_default_timezone_set('Asia/Manila');
 
// variables used for jwt
$key = "example_key";
$iss = "http://example.org";
$aud = "http://example.com";
$iat = 1356999524;
$nbf = 1357000000;
?>