Home  >  Article  >  Backend Development  >  Basic knowledge of streams in PHP

Basic knowledge of streams in PHP

墨辰丷
墨辰丷Original
2018-06-09 10:17:001448browse

This article mainly introduces the basic knowledge of PHP streams. Interested friends can refer to it. I hope it will be helpful to everyone.

Overview

Streams are a feature introduced in PHP 4.3, mainly to unify the working methods of files, sockets and other similar resources. PHP 4.3 has been around for a long time, but many programmers seem to be unable to use streams in PHP correctly, including me of course. I have encountered the use of streams in some programs before, such as php://input, but I have never had a chance to sort it out. Today I will sort out this part of the knowledge.

Stream is a resource provided by PHP, which can be used transparently by us, and stream is a very powerful tool. Proper use of streams in programs can take our programs to a new level.

Each stream implements a wrapper, which contains some additional code to handle special protocols and encodings. PHP provides some built-in wrappers, and we can also easily create and register custom wrappers. We can even use contexts and filters to alter and enhance wrappers.

Basic knowledge of streams

The form of streams in PHP is: e8ecf1fabecb2bbf3952eba1f0f8a7ec://b4bef09dd2761803871f1d83e55d08b2. e8ecf1fabecb2bbf3952eba1f0f8a7ec is the name of the wrapper, and the content of b4bef09dd2761803871f1d83e55d08b2 depends on the different wrapper syntax.
The default wrapper is file://, which means that the stream is used every time we access the file system. For example, we can use the following two methods to read files: readfile('/path/to/somefile.txt') and readfile('file:///path/to/somefile.txt'). Use these two method to read the file, you can get the same result.

As mentioned earlier, PHP provides some built-in wrappers, protocols and filters. To check which wrappers are installed on our machine, you can use the following functions:

The code is as follows:

<?php
    var_dump(stream_get_transports());
    var_dump(stream_get_wrappers());
    var_dump(stream_get_filters());
?>

The output content of my local environment is as follows:

The code is as follows :

array (size=8)
  0 => string &#39;tcp&#39; (length=3)
  1 => string &#39;udp&#39; (length=3)
  2 => string &#39;unix&#39; (length=4)
  3 => string &#39;udg&#39; (length=3)
  4 => string &#39;ssl&#39; (length=3)
  5 => string &#39;sslv3&#39; (length=5)
  6 => string &#39;sslv2&#39; (length=5)
  7 => string &#39;tls&#39; (length=3)
array (size=12)
  0 => string &#39;https&#39; (length=5)
  1 => string &#39;ftps&#39; (length=4)
  2 => string &#39;compress.zlib&#39; (length=13)
  3 => string &#39;compress.bzip2&#39; (length=14)
  4 => string &#39;php&#39; (length=3)
  5 => string &#39;file&#39; (length=4)
  6 => string &#39;glob&#39; (length=4)
  7 => string &#39;data&#39; (length=4)
  8 => string &#39;http&#39; (length=4)
  9 => string &#39;ftp&#39; (length=3)
  10 => string &#39;phar&#39; (length=4)
  11 => string &#39;zip&#39; (length=3)
array (size=12)
  0 => string &#39;zlib.*&#39; (length=6)
  1 => string &#39;bzip2.*&#39; (length=7)
  2 => string &#39;convert.iconv.*&#39; (length=15)
  3 => string &#39;string.rot13&#39; (length=12)
  4 => string &#39;string.toupper&#39; (length=14)
  5 => string &#39;string.tolower&#39; (length=14)
  6 => string &#39;string.strip_tags&#39; (length=17)
  7 => string &#39;convert.*&#39; (length=9)
  8 => string &#39;consumed&#39; (length=8)
  9 => string &#39;dechunk&#39; (length=7)
  10 => string &#39;mcrypt.*&#39; (length=8)
  11 => string &#39;mdecrypt.*&#39; (length=10)

In addition, we can customize or use third-party streams.

php://wrapper

PHP has its own wrapper for accessing input/output (I/O) streams. PHP has basic php://stdin, php://stdout, php://stderr wrappers corresponding to the default I/O resources. There is also a php://input stream, which is a read-only stream, and the content of the stream is the data requested by the post. This stream is especially useful when we put data in the body of a post request to request a remote service.

Because php://input is the most commonly used stream, here are some knowledge points:

1.php://input can read unprocessed POST data. Compared to $HTTP_RAW_POST_DATA, it puts less pressure on memory and does not require special php.ini settings. php://input cannot be used for enctype=multipart/form-data
2. Only when Content-Type is application/x-www-form-urlencoded and the submission method is POST method, $_POST data is the same as php:/ /Input data is "consistent" (with quotation marks, indicating that their formats are inconsistent and their content is consistent). In other cases, they are inconsistent
3.php://input cannot read GET data. This is because the _GET data is written as query_path in the PATH field of the http request header (header), rather than in the body part of the http request.

Stream Contexts

This part of the content has almost never been encountered in programming, and it is difficult for me to research it. If you are interested, you can Baidu it yourself .

Summary

Streams are not used much in daily programming. When using xml-rpc, the server side obtains client data, mainly through php Input stream input, this is a common scenario. Hackers may also use this part of the content when they invade the website.

Related recommendations:

How to use the Snoopy class to parse html files

php for file operations and characters String encryption method

php string operation method

The above is the detailed content of Basic knowledge of streams in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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