Brief introduction to the socket communication principle of php

Source: Internet
Author: User
: This article mainly introduces the socket communication principle of php. if you are interested in the PHP Tutorial, please refer to it. Are you familiar with TCP/IP, UDP, and Socket programming? With the development of network technology, these words are filled with our ears. So I want to ask:
1. what are TCP/IP and UDP?
2. where is the Socket?
3. What is Socket?
4. will you use them?
What are TCP/IP and UDP?

TCP/IP (Transmission Control Protocol/Internet Protocol) is an industrial standard Protocol set designed for WANs.
User Data Protocol (UDP) is the Protocol corresponding to TCP. It belongs to the TCP/IP protocol family.
The following figure shows the relationship between these protocols.

TCP/IP protocol families include transport layer, network layer, and link layer. Now you know the relationship between TCP/IP and UDP.
Where is the Socket?
In the middle, we didn't see the Socket shadow, so where is it? You can still use graphs to speak clearly.

The original Socket is here.
What is Socket?
Socket is an intermediate software abstraction layer for communications between the application layer and the TCP/IP protocol family. it is a group of interfaces. In the design mode, Socket is actually a facade mode, which hides the complex TCP/IP protocol family behind the Socket interface. for users, a set of simple interfaces are all, let the Socket organize the data to conform to the specified protocol.
Will you use them?
Our predecessors have already done a lot for us, and the communication between networks is much simpler, but after all there is still a lot of work to do. I have heard about Socket programming before and think it is a relatively advanced programming knowledge. but as long as I understand the working principle of Socket programming, the mysterious veil will be uncovered.
A scenario in life. You need to call a friend to make a dial-up call. when a friend hears the ringtone and calls the phone, you and your friend can establish a connection to speak. After the communication is over, stop the call. The scenario in life explains this working principle. maybe the TCP/IP protocol family is born in life, which is not necessarily true.

Start with the server. The server first initializes the Socket, then binds it to the port (bind), listens to the port (listen), calls accept, and waits for the client to connect. At this time, if a client initializes a Socket and connects to the server (connect), if the connection is successful, the connection between the client and the server is established. The client sends a data request. the server receives the request and processes the request. then, the response data is sent to the client. the client reads the data and closes the connection. the interaction ends.

Socket-related functions:
Bytes ----------------------------------------------------------------------------------------------
Socket_accept () accepts a Socket connection
Socket_bind () binds the socket to an IP address and port.
Socket_clear_error () clears socket errors or the final error code
Socket_close () closes a socket resource
Socket_connect () starts a socket connection
Socket_create_listen () opens a socket listener on the specified port.
Socket_create_pair () generates a pair of identical sockets into an array.
Socket_create () generates a socket, which is equivalent to the data structure of a socket.
Socket_get_option () obtain the socket option
Socket_getpeername () obtains the IP address of a remote host similar to that of a remote host.
Socket_getsockname () gets the IP address of the local socket
Socket_iovec_add () add a new vector to a scattered/aggregated array
Socket_iovec_alloc () this function creates an iovec data structure that can send and receive read/write data.
Socket_iovec_delete () deletes an allocated iovec
Socket_iovec_fetch () returns the data of the specified iovec resource.
Socket_iovec_free () releases an iovec resource.
Socket_iovec_set () sets the new value of iovec data
Socket_last_error () obtains the final error code of the current socket.
Socket_listen () listens to all connections from the specified socket
Socket_read () reads data of the specified length
Socket_readv () reads data from scattered/aggregate arrays
Socket_recv () ends data from the socket to the cache
Socket_recvfrom () accepts data from the specified socket. If no value is specified, the current socket is used by default.
Socket_recvmsg () receives messages from iovec
Socket_select () multi-path selection
Socket_send () this function sends data to the connected socket
Socket_sendmsg () sends a message to the socket
Socket_sendto () sends a message to the socket of the specified address
Socket_set_block () is set to block mode in socket
Set the socket in socket_set_nonblock () to non-block mode.
Socket_set_option () sets socket options
The socket_shutdown () function allows you to close the read, write, or specified socket
Socket_strerror () returns a detailed error of the specified error number
Socket_write () writes data to the socket cache
Socket_writev () writes data to a distributed/aggregate array

Case 1: socket communication demonstration

Server:

 = 5) {break ;};}// echo $ buf; socket_close ($ msgsock) ;}while (true); socket_close ($ sock);?>

This is the socket server code. Then run cmd. Note the path where your program is stored.

Not Reflected. the current server-side program has started to run and the port has started to listen. Run netstat-ano to check the port status. my port number is Port 1935.

Check that the port is already in the LISTENING status. Next, we only need to run the client program to connect. Code on

 ";}While ($ out = socket_read ($ socket, 8192) {echo" received the server's return message! \ N "; echo" accept the following content: ", $ out;} echo" close SOCKET... \ n "; socket_close ($ socket); echo" close OK \ n ";?>

Now the client is connected to the server.

Case 2: code details

// Set some basic variables
$ Host = "192.168.1.99 ";
$ Port = 1234;
// Set the timeout value
Set_time_limit (0 );
// Create a Socket
$ Socket = socket_create (AF_INET, SOCK_STREAM, 0) or die ("cocould not createsocket \ n ");
// Bind the Socket to the port
$ Result = socket_bind ($ socket, $ host, $ port) or die ("cocould not bind tosocket \ n ");
// Start listening link
$ Result = socket_listen ($ socket, 3) or die ("cocould not set up socketlistener \ n ");
// Accept incoming connections
// Another Socket for communication
$ Spawn = socket_accept ($ socket) or die ("cocould not accept incomingconnection \ n ");
// Obtain client input
$ Input = socket_read ($ spawn, 1024) or die ("cocould not read input \ n ");
// Clear the input string
$ Input = trim ($ input );
// Process client input and return results
$ Output = strrev ($ input). "\ n ";
Socket_write ($ spawn, $ output, strlen ($ output) or die ("cocould not write
Output \ n ");
// Disable sockets
Socket_close ($ spawn );
Socket_close ($ socket); detailed descriptions of each step are as follows:
For example, website design companies, design companies, network marketing, network promotion, network optimization, website promotion, website optimization, and website operation are all similar steps.
1. the first step is to create two variables to save the IP address and port of the server running the Socket. you can configure the server and website port for your website (the port can be a number ranging from 1 to 65535), provided that the port is not used.

[Copy to clipboard]

Php code:

// Set two variables
$ Host = "192.168.1.99 ";
$ Port = 1234;

2. you can use the set_time_out () function on the server to ensure that PHP does not time out while waiting for client connection.

[Copy to clipboard]

Php code:

// Timeout
Set_time_limit (0 );

3. on the basis of the above, we should use the socket_creat () function to create a Socket.-This function returns a Socket handle, which will be used in all functions used for website creation in the future.

[Copy to clipboard]

Php code:

// Create a Socket
$ Socket = socket_create (AF_INET, SOCK_STREAM, 0) or die ("cocould not create
Socket \ n ");

The first parameter "AF_INET" is used to specify the domain name;
The second parameter "SOCK_STREM" tells the function what type of Socket will be created (TCP type in this example)
Therefore, if you want to create a UDP Socket, you can use the following code:

[Copy to clipboard]

Php code:

// Create a socket
$ Socket = socket_create (AF_INET, SOCK_DGRAM, 0) or die ("cocould not create
Socket \ n ");

4. Once a Socket handle is created, the next step is to specify or bind it to the specified website construction company address and the Enterprise website construction Port. this can be done through the socket_bind () function.

[Copy to clipboard]

Php code:

// Bind a socket to the specified address and port
$ Result = socket_bind ($ socket, $ host, $ port) or die ("cocould not bind
Socket \ n ");

5. after the Socket is created and bound to a port, you can start listening for external connections. PHP allows you to use the socket_listen () function to start a website production company listener, and you can specify a number (in this example, the second parameter is 3)

[Copy to clipboard]

Php code:

// Start listening for connection
$ Result = socket_listen ($ socket, 3) or die ("cocould not set up socket
Listener \ n ");

6. up to now, your server has not done anything except waiting for connection requests from clients. once a client connection is received, the socket_accept () function starts to take effect. it receives connection requests and calls another sub-Socket to process information between the client-website production server.

[Copy to clipboard]

Php code:

// Accept the request link
// Call the sub-socket to process the information
$ Spawn = socket_accept ($ socket) or die ("cocould not accept incoming
Connection \ n ");

This sub-socket can now be used for client-server communication by subsequent web pages.
7. after a connection is established, the web design server will wait for the client to send some input information, which can be obtained by The socket_read () function, and assign it to the $ input variable of PHP.

[Copy to clipboard]

Php code:

// Read client input
$ Input = socket_read ($ spawn, 1024) or die ("cocould not read input \ n ");
?>

The second parameter of socker_read is used to specify the number of bytes to read. you can use it to limit the size of data obtained from the client.
Note: The socket_read function keeps reading the APP development data on the shell end until \ n, \ t, or \ 0 characters are met. the PHP script regards this write character as an input Terminator.
8. currently, the website construction server must process the data sent from the client as a network company (in this example, only the data is input and uploaded back to the client ). this part can be done by the socket_write () function (making it possible to send a data stream back to the client by the communication socket)

[Copy to clipboard]

Php code:

// Process client input and return data
$ Output = strrev ($ input). "\ n ";
Socket_write ($ spawn, $ output, strlen ($ output) or die ("cocould not write
Output \ n ");

9. Once the output is returned to the client, the parent/child socket should be terminated through the socket_close () function.

[Copy to clipboard]

Php code:

// Disable sockets
Socket_close ($ spawn );
Socket_close ($ socket );

Address; http://www.cnblogs.com/thinksasa/archive/2013/02/26/2934206.html

The above introduces the socket communication principle of php, including some content, and hope to be helpful to friends who are interested in PHP tutorials.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.