Advertisement
Guest User

Untitled

a guest
Nov 10th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2. $ch = curl_init('https://wordpress.org/');
  3. curl_setopt($ch, CURLOPT_HEADER, 1);
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  5.  
  6. $output = curl_exec($ch);
  7.  
  8. curl_close($ch);
  9.  
  10. header('Content-type: text/plain');
  11.  
  12. print $output;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement