Advertisement
zero50x

Псевдокод Прокси CURL

Apr 27th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $proxy_array = array('proxy1', 'proxy2', 'proxy3');
  4.  
  5. while ($твоя_задача) {
  6. $ch = curl_init();
  7.  
  8. $proxy = array_rand($proxy_array);
  9. curl_setopt($ch, 'Установить прокси', $proxy);
  10.  
  11. $html = curl_exec($ch)
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement