Table of Contents
php 利用socket发送GET,POST请求,socketget
Home php教程 php手册 php 利用socket发送GET,POST请求,socketget

php 利用socket发送GET,POST请求,socketget

Jun 13, 2016 am 08:57 AM
get php post socket use send ask

php 利用socket发送GET,POST请求,socketget

  作为php程序员一定会接触http协议,也只有深入了解http协议,编程水平才会更进一步。最近我一直在学习php的关于http的编程,许多东西恍然大悟,受益匪浅。希望分享给大家。本文需要有一定http基础的开发者阅读。

  今天给大家带来的是如何利用socket发送GET,POST请求。我借用燕十八老师封装好的一个Http类给进行说明。

  在日常编程中相信很多人和我一样大部分时间是利用浏览器向服务器提出GET,POST请求,那么可否利用其它方式提出GET,POST请求呢?答案必然是肯定的。了解过HTTP协议的人知道,浏览器提交请求的实质是向服务器发送一个请求信息,这个请求信息有请求行,请求头,请求体(非必须)构成。服务器根据请求信息返回一个响应信息。连接断开。

   HTTP请求的格式如下所示:

<span>1</span> <span><</span><span>request-line</span><span>></span>
<span>2</span> <span><</span><span>headers</span><span>></span>
<span>3</span> <span><</span><span>blank </span><span>line</span><span>></span>
<span>4</span> [<span><</span><span>request-body</span><span>></span>]
Copy after login

  HTTP响应的格式与请求的格式十分相似:

<span><</span><span>status-line</span><span>></span>
<span><</span><span>headers</span><span>></span>
<span><</span><span>blank </span><span>line</span><span>></span><span>

[</span><span><</span><span>response-body</span><span>></span>]
Copy after login

  我们可以利用HTTP发送请求的原理,可以重新考虑利用socket发送HTTP请求。

  Socket的英文原义是“孔”或“插座”。通常也称作“套接字”,用于描述IP地址和端口,是一个通信链的句柄,可以用来实现不同虚拟机或不同计算机之间的通信。在Internet上的主机一般运行了多个服务软件,同时提供几种服务。每种服务都打开一个Socket,并绑定到一个端口上,不同的端口对应于不同的服务。如此看来,其实利用socket操作远程文件和读写本地的文件一样容易,把本地文件看成通过硬件传输,远程文件通过网线传输就行了。

  因而可以将发送请求的考虑成 建立连接->打开socket接口(fsockopen())->写入请求(fwrite())->读出响应(fread()->关闭文件(fclose())。话不多说,直接上代码:

  

<?<span>php 

</span><span>interface</span><span> Proto {
    </span><span>//</span><span> 连接url</span>
    <span>function</span> conn(<span>$url</span><span>);

    </span><span>//</span><span>发送get查询</span>
    <span>function</span><span> get();

    </span><span>//</span><span> 发送post查询</span>
    <span>function</span><span> post();

    </span><span>//</span><span> 关闭连接</span>
    <span>function</span><span> close();
}



</span><span>class</span> Http <span>implements</span><span> Proto {

    </span><span>const</span> CRLF  = "\r\n"<span>;

    </span><span>protected</span> <span>$errno</span> = -1<span>;
    </span><span>protected</span> <span>$errstr</span> = ''<span>;
    </span><span>protected</span> <span>$response</span> = ''<span>;

    </span><span>protected</span> <span>$url</span> = <span>null</span><span>;
    </span><span>protected</span> <span>$version</span> = 'HTTP/1.1'<span>;
    </span><span>protected</span> <span>$fh</span> = <span>null</span><span>;
    
    </span><span>protected</span> <span>$line</span> = <span>array</span><span>();
    </span><span>protected</span> <span>$header</span> = <span>array</span><span>();
    </span><span>protected</span> <span>$body</span> = <span>array</span><span>();

    
    </span><span>public</span> <span>function</span> __construct(<span>$url</span><span>) {
        </span><span>$this</span>->conn(<span>$url</span><span>);
        </span><span>$this</span>->setHeader('Host: ' . <span>$this</span>->url['host'<span>]);
    }

    </span><span>//</span><span> 此方法负责写请求行</span>
    <span>protected</span> <span>function</span> setLine(<span>$method</span><span>) {
        </span><span>$this</span>->line[0] = <span>$method</span> . ' ' . <span>$this</span>->url['path'] . '?' .<span>$this</span>->url['query'] . ' '. <span>$this</span>-><span>version;
    }

    </span><span>//</span><span> 此方法负责写头信息</span>
    <span>public</span> <span>function</span> setHeader(<span>$headerline</span><span>) {
        </span><span>$this</span>-><span>header</span>[] = <span>$headerline</span><span>; 
    }

    </span><span>//</span><span> 此方法负责写主体信息</span>
    <span>protected</span> <span>function</span> setBody(<span>$body</span><span>) {
         </span><span>$this</span>->body[] = <span>http_build_query</span>(<span>$body</span><span>);
    }


    </span><span>//</span><span> 连接url</span>
    <span>public</span> <span>function</span> conn(<span>$url</span><span>) {
        </span><span>$this</span>->url = <span>parse_url</span>(<span>$url</span><span>);
        </span><span>//</span><span> 判断端口</span>
        <span>if</span>(!<span>isset</span>(<span>$this</span>->url['port'<span>])) {
            </span><span>$this</span>->url['port'] = 80<span>;
        }

        </span><span>//</span><span> 判断query</span>
        <span>if</span>(!<span>isset</span>(<span>$this</span>->url['query'<span>])) {
            </span><span>$this</span>->url['query'] = ''<span>;
        }

        </span><span>$this</span>->fh = <span>fsockopen</span>(<span>$this</span>->url['host'],<span>$this</span>->url['port'],<span>$this</span>->errno,<span>$this</span>->errstr,3<span>);
    }

    </span><span>//</span><span>构造get请求的数据</span>
    <span>public</span> <span>function</span><span> get() {
        </span><span>$this</span>->setLine('GET'<span>);
        </span><span>$this</span>-><span>request();
        </span><span>return</span> <span>$this</span>-><span>response;
    }

    </span><span>//</span><span> 构造post查询的数据</span>
    <span>public</span> <span>function</span> post(<span>$body</span> = <span>array</span><span>()) {      
        </span><span>$this</span>->setLine('POST'<span>);

        </span><span>//</span><span> 设计content-type</span>
        <span>$this</span>->setHeader('Content-type: application/x-www-form-urlencoded'<span>);
        
        </span><span>//</span><span> 设计主体信息,比GET不一样的地方</span>
        <span>$this</span>->setBody(<span>$body</span><span>);


        </span><span>//</span><span> 计算content-length</span>
        <span>$this</span>->setHeader('Content-length: ' . <span>strlen</span>(<span>$this</span>->body[0<span>]));

        </span><span>$this</span>-><span>request();

        </span><span>return</span> <span>$this</span>-><span>response;
    }

    </span><span>//</span><span> 真正请求</span>
    <span>public</span> <span>function</span><span> request() {
        </span><span>//</span><span> 把请求行,头信息,实体信息 放在一个数组里,便于拼接</span>
        <span>$req</span> = <span>array_merge</span>(<span>$this</span>->line,<span>$this</span>-><span>header</span>,<span>array</span>(''),<span>$this</span>->body,<span>array</span>(''<span>));
        </span><span>//</span><span>print_r($req);</span>

        <span>$req</span> = <span>implode</span>(self::CRLF,<span>$req</span><span>); 
        </span><span>//</span><span>echo $req; exit;</span>

        <span>fwrite</span>(<span>$this</span>->fh,<span>$req</span><span>);
        
        </span><span>while</span>(!<span>feof</span>(<span>$this</span>-><span>fh)) {
            </span><span>$this</span>->response .= <span>fread</span>(<span>$this</span>->fh,1024<span>);
        }

        </span><span>$this</span>->close(); <span>//</span><span> 关闭连接</span>
<span>    }


    </span><span>//</span><span> 关闭连接</span>
    <span>public</span> <span>function</span><span> close() {
        </span><span>fclose</span>(<span>$this</span>-><span>fh);
    }

}</span>
Copy after login

利用此类发送一个简单的GET请求:

<?<span>php<br /><br />//记得引用Http类
</span><span>$url</span>="http://home.cnblogs.com/u/DeanChopper/"<span>;
</span><span>$http</span>=<span>new</span> Http(<span>$url</span><span>);


</span><span>$response</span>=<span>$http</span>-><span>get();

</span><span>print_r</span>(<span>$response</span>);
Copy after login

  返回值为信息,可以对响应信息进行进一步处理,得到自己想得到的内容。

  

 

  

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles