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 = '{"key":"AIzaSyB7tA6WOQ3NAch5ylIi_jy7G1raAUxhtdI","Location":"38,908133,-77,047119", "Timestamp":"1458000000"}'; //$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(3) { ["key"]=> string(39) "AIzaSyB7tA6WOQ3NAch5ylIi_jy7G1raAUxhtdI" ["Location"]=> string(20) "38,908133,-77,047119" ["Timestamp"]=> string(10) "1458000000" } HashLK-904c011a3755dcc0cf39111ec6c7e11785874db2119cc282c2ca125c0d60fb5b HashBD-7b5206be9546e273d0f4b5b9612d0911e0a722a1a30039fcbb6aea3b800aac3d ElMD5:08f518c5164bdadf7d86b3e120e178ca

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:
44.6 ms | 402 KiB | 8 Q