Guest User

Untitled

a guest
Oct 22nd, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $headers = array();
  2. $headers[] = "Content-Length: 96";
  3. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  4.  
  5. $arr = "string-with-a-length-of-108";
  6. $headers = array();
  7. $headers[] = "Content-Length: ".(strlen($arr)-12);
  8. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
Add Comment
Please, Sign In to add comment