Decodes a quoted string.
If passed an unquoted string that matches the "token" construct (as defined in the HTTP specification), it is passed through verbatim.
public static function unquote(string $s) : string { return preg_replace('/\\\\(.)|"/', '$1', $s); }