3v4l.org

run code in 300+ PHP versions simultaneously
<?php $req = 'Authorization: Digest nonce="53a193b54e06b",nc="0",cnonce="b059cf311750c47cf6baaf95b86260a6",qop="auth",username="Localstars",uri="http://sandbox.print.localstars.com/templates/d.1402656459.52/create.json",response="a7b7e42197b430c4359a4d6ed815c1b0"'; function http_digest_parse($txt) { // protect against missing data $needed_parts = array('nonce'=>1, 'nc'=>1, 'cnonce'=>1, 'qop'=>1, 'username'=>1, 'uri'=>1, 'response'=>1); $data = array(); $keys = implode('|', array_keys($needed_parts)); preg_match_all('@(' . $keys . ')=(?:([\'"])([^\2]+?)\2|([^\s,]+))@', $txt, $matches, PREG_SET_ORDER); foreach ($matches as $m) { $data[$m[1]] = $m[3] ? $m[3] : $m[4]; unset($needed_parts[$m[1]]); } return $needed_parts ? false : $data; } http_digest_parse($req);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key 4 in /in/NTfGY on line 15
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined offset: 4 in /in/NTfGY on line 15
Output for 7.3.32 - 7.3.33
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined offset: 4 in /in/NTfGY on line 15

preferences:
252.99 ms | 402 KiB | 370 Q