Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function output_mime($url){
  2.  
  3. $ch = curl_init('http://localhost/cache.php?url='.urlencode($url));
  4. curl_setopt_array(
  5. $ch,
  6. array(
  7. CURLOPT_RETURNTRANSFER => true
  8. )
  9. );
  10. $data = curl_exec($ch);
  11. $mime = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
  12. curl_close($ch);
  13. //header($mime);
  14. echo $mime;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement