<?php $json = '{"token":"blablabla"}';$salt = "21x1231"; $code = json_decode($json, true);$token = $code->token;$hash = strtolower(md5($token.salt)); echo 'url?param='.$token.'&tok='.$hash;echo PHP_EOL, PHP_EOL; $code = json_decode($json);$token = $code->token;$hash = strtolower(md5($token.$salt)); echo 'url?param='.$token.'&tok='.$hash;
Standard input is empty
url?param=&tok=ceb20772e0c9d240c75eb26b0e37abee url?param=blablabla&tok=3267312b4a3c5699ec8895e9dfc54d66
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
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!