php中用于检测一个地理IP地址是否可用的代码_PHP
/********************************************
*
* 函数名:curl_string ($url,$proxy)
* 作 用:检测代理IP地址
* 作 者:李飞麟
* 日 期:2011-11-09
*
********************************************/
function curl_string ($url,$proxy)
{
$user_agent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh- CN; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 FirePHP/0.2.1";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_PROXY, $proxy);
curl_setopt ($ch, CURLOPT_URL, $url);//设置要访问的IP
curl_setopt ($ch, CURLOPT_USERAGENT, $user_agent);//模拟用户使用的浏览器
@curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 ); // 使用自动跳转
curl_setopt ( $ch, CURLOPT_TIMEOUT, 120 ); //设置超时时间
curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 ); // 自动设置Referer
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'c:\cookie.txt');
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_TIMEOUT, 10);
$result = curl_exec($ch);
// Check if any error occured
if( $result === false)
{
error_log(date("H:i:s") . ' Curl 失败: ' . curl_error($ch) ." -- ". $proxy."\n", 3, MYMEDIA.'/log/'.date('Y-m-d').'_Err.log');
}else{
error_log(date("H:i:s") . ' Curl 成功: ' . $proxy."\n", 3, MYMEDIA.'/log/'.date('Y-m-d').'_OK.log');
}
curl_close($ch);
return $result;
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

With the continuous development of Internet technology, big data has become an important asset for enterprise development. For enterprises, data availability and security are crucial. MongoDB is a high-performance, high-availability NoSQL database that is increasingly favored by enterprises. However, the availability of MongoDB is also one of the focuses of enterprises. This article will introduce the method of PHP to achieve the availability of MongoDB database. 1. Understand the high availability features of MongoDB. As a NoSQL database, MongoDB has

Microsoft launched the latest ISO image of Windows 101909 version in October. Many friends want to know whether the new win101909 version is easy to use and whether they should download it. So let me introduce it to you. Is win101909 easy to use? Answer: Very easy to use. 1. win101909 is currently the most stable and easy-to-use win10 system. 2. It basically adds some new functions and optimizations to the previous version. Win101909 update content: 1. Light mode and UI improvements 1. Obtained a new theme color. 2. Users can make changes in personalized color settings. 3. In light mode, the system theme interface will turn into white and gray. 2. Native sandbox function 1. Brand new sandbox

Recently, the issue of whether you can still log in to your MSN mailbox has become the focus of many netizens. As early as 1996, MSN Mailbox, as an email service launched by Microsoft, was once very popular and became an essential tool for many people to communicate in their daily lives. However, with the continuous development and changes of Internet technology, MSN mailboxes are gradually replaced by other more convenient and advanced email services, causing the number of users to gradually decline. In recent years, Microsoft has decided to close the registration function of MSN mailboxes and stop providing new MSN mailboxes to users.

With the popularity of the Internet and big data, more and more applications and businesses need to obtain data through web crawlers. In order to achieve efficient, fast and stable data crawling, using proxy IP has become the preferred solution for many developers. . In the process of implementing proxy IP crawlers, PHP, as a powerful and widely used back-end programming language, has great advantages. This article will introduce how to use PHP to implement a crawler that randomly obtains proxy IPs in order to better crawl data. 1. Selection and acquisition of proxy IP. Using proxy IP

In the field of modern software development, ensuring system availability and fault tolerance is crucial. Availability refers to the system's ability to operate and interact normally in accordance with user and business needs, while fault tolerance refers to the system's ability to maintain normal operation or recover quickly in the face of abnormal conditions or errors. This article will introduce some precautions in C# development to ensure that the system has good availability and fault tolerance. First, a well-designed user interface is an important part of ensuring system usability. The user interface should not only be intuitive and easy to understand, but also have good

With the development of web crawlers, more and more websites and servers are beginning to adopt anti-crawler strategies to prevent data from being maliciously crawled. These strategies include IP blocking, useragent detection, Cookies verification, etc. Without a corresponding response strategy, our crawlers can easily be labeled as malicious and banned. Therefore, in order to avoid this situation, we need to apply policies such as proxy IP, useragent, and cookies in the crawler program of the Scrapy framework.

Using proxy IP and anti-crawler strategies in Scrapy crawlers In recent years, with the development of the Internet, more and more data needs to be obtained through crawlers, and the anti-crawler strategies for crawlers have become more and more strict. In many scenarios, using proxy IP and anti-crawler strategies have become essential skills for crawler developers. In this article, we will discuss how to use proxy IP and anti-crawling strategies in Scrapy crawlers to ensure the stability and success rate of crawled data. 1. Why you need to use proxy IP crawler

Technical summary of monitoring website availability based on Python scripts in Linux environment: This article introduces how to use Python scripts to monitor website availability in Linux environment. Specifically, it includes detecting whether the website is accessible by sending HTTP requests and parsing responses, and how to configure the monitoring script as a scheduled task and send alarm emails. Introduction With the development of the Internet, website usability has become a crucial indicator. If the website cannot be accessed normally, it will cause great inconvenience to users and even affect
