Advertisement
aliakbarbeda2

Curl polos

Jan 14th, 2022
1,139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3.   $ch = curl_init("");
  4.  
  5.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  7. $content = curl_exec($ch);
  8. curl_close($ch);
  9.  
  10. echo $content;
  11.  
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement