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":"jaime3@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 git.master, git.master_jit, rfc.property-hooks
array(6) { ["Tablet"]=> int(153161) ["Telefono"]=> string(9) "650849571" ["RxTlf"]=> string(2) "22" ["Email"]=> string(17) "jaime3@likeik.com" ["RxEmail"]=> string(2) "23" ["DeliveryId"]=> int(1222) } HashLK-c9be6b4c07a1627b8683e289a248cdd88c60015c46b3d672fca096b9790e0c4b HashBD-fee13b1f6b22084a595c4e606b3c20187d98357fd3805bfd0f8fc7347ee52931 ElMD5:292fda12bd4a86a4cadba00f31dbbe03

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
55.2 ms | 402 KiB | 8 Q