fork download
  1. <?php
  2.  
  3. $json = '{"token":"blablabla"}';
  4. $salt = "21x1231";
  5.  
  6. $code = json_decode($json, true);
  7. $token = $code->token;
  8. $hash = strtolower(md5($token.salt));
  9. echo 'url?param='.$token.'&tok='.$hash;
  10. echo PHP_EOL, PHP_EOL;
  11.  
  12. $code = json_decode($json);
  13. $token = $code->token;
  14. $hash = strtolower(md5($token.$salt));
  15. echo 'url?param='.$token.'&tok='.$hash;
Success #stdin #stdout #stderr 0.01s 23520KB
stdin
Standard input is empty
stdout
url?param=&tok=ceb20772e0c9d240c75eb26b0e37abee

url?param=blablabla&tok=3267312b4a3c5699ec8895e9dfc54d66
stderr
PHP Notice:  Trying to get property of non-object in /home/4Tf7YO/prog.php on line 7
PHP Notice:  Use of undefined constant salt - assumed 'salt' in /home/4Tf7YO/prog.php on line 8