3v4l.org

run code in 300+ PHP versions simultaneously
<?php $HashPrivado = 'ec7363b7c7ff3ab851335f801568dec5115f09705a45f7d849928e906e0964b0'; $HashPBD = '746e085ea210dd7c14f3cad3f6113767aa58439bebee6459989141c0f0474bff'; $BodyCupon = array( "Tipo" => "code128", "Codigo" => "1234567", "Tam" => 300, "Color" => "black", "ColorB" => "white", "AltoB"=> 50, "AnchoB"=> 2 ); //Preparo la llamada //$Parametros = json_encode($BodyCupon); $Parametros = '{"Tablet":153161,"Telefono":"650849571","RxTlf":"22","Email":"jaime2@likeik.com", "RxEmail":"23", "DeliveryId":1222}'; //$Parametros = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($Parametros, TRUE)); //Usando el hash privado, firmamos el contenido a transmitir (los parĂ¡metros) $ElHash = hash_hmac('sha256', $Parametros, $HashPrivado); $ElHashBD = hash_hmac('sha256', $Parametros, $HashPBD); echo 'HashLK-'.$ElHash.PHP_EOL; echo 'HashBD-'.$ElHashBD.PHP_EOL; $HashMD5 = hash('md5', $Parametros, FALSE); echo 'ElMD5:'.$HashMD5;
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
array(6) { ["Tablet"]=> int(153161) ["Telefono"]=> string(9) "650849571" ["RxTlf"]=> string(2) "22" ["Email"]=> string(17) "jaime2@likeik.com" ["RxEmail"]=> string(2) "23" ["DeliveryId"]=> int(1222) } HashLK-47645ddb3002e8679aba76d70aaf48d53e531036506d8d25e545571e2a589df3 HashBD-d3878e5f747e7b37e6b87452a7ac8e267fefc448c9d400c5450352d31c526156 ElMD5:a646ab8093fc698b3aa5b23788447a6b
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 array(6) { ["Tablet"]=> int(153161) ["Telefono"]=> string(9) "650849571" ["RxTlf"]=> string(2) "22" ["Email"]=> string(17) "jaime2@likeik.com" ["RxEmail"]=> string(2) "23" ["DeliveryId"]=> int(1222) } HashLK-47645ddb3002e8679aba76d70aaf48d53e531036506d8d25e545571e2a589df3 HashBD-d3878e5f747e7b37e6b87452a7ac8e267fefc448c9d400c5450352d31c526156 ElMD5:a646ab8093fc698b3aa5b23788447a6b

preferences:
146.16 ms | 403 KiB | 218 Q