fork download
  1. <?php
  2. function getCookie($key, $cookie) {
  3. if (preg_match('#' . preg_quote($key) . '=([\s\S]+?)(;|$)#i', $cookie, $output)) {
  4. return $output[1];
  5. }
  6. }
  7.  
  8. $cookie = 'ct0=945d9ead4b3ce88d5aba8f09a4d78aee;foobar=945d9ead4b3ce88d5ab&a8f09a4d78aee';
  9.  
  10. var_dump(getCookie('ct0', $cookie));
  11. var_dump(getCookie('foobar', $cookie));
  12.  
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
string(32) "945d9ead4b3ce88d5aba8f09a4d78aee"
string(33) "945d9ead4b3ce88d5ab&a8f09a4d78aee"