php stream_get_meta_data return value
php stream_get_meta_data return value_php basics
the test code is as follows:
the code is as follows:
<?php $fp=fopen("http://www.sina.com.cn", 'r'); $stream_meta = stream_get_meta_data($fp); print_r($stream_meta); ?>
the output on my local machine is as follows:
array ( [wrapper_data] => array ( [0] => http/1.0 200 ok [1] => date: tue, 06 dec 2011 10:08:11 gmt [2] => server: apache [3] => last-modified: tue, 06 dec 2011 10:07:12 gmt [4] => accept-ranges: bytes [5] => x-powered-by: mod_xlayout/rc2 [6] => cache-control: max-age=60 [7] => expires: tue, 06 dec 2011 10:09:11 gmt [8] => vary: accept-encoding [9] => x-ua-compatible: ie=emulateie7 [10] => content-type: text/html [11] => age: 26 [12] => content-length: 675274 [13] => x-cache: hit from xd33-98.hp08040037.sina.com.cn [14] => connection: close ) [wrapper_type] => http [stream_type] => tcp_socket/ssl [mode] => r [unread_bytes] => 3759 [seekable] => [uri] => http://www.sina.com.cn [timed_out] => [blocked] => 1 [eof] => )
description
array stream_get_meta_data (int $fp)
returns the information of the existing stream. can be any stream established via fopen(), fsockopen() and pfsockopen(). the returned array contains the following items:
timed_out (bool) - true if the stream timed out while waiting for data in the last call to fread() or fgets().
blocked (bool) - true if the stream is in blocking io mode. see stream_set_blocking().
eof (bool) - true if the stream reaches the end of the file. note that for socket streams it can be true even when unread_bytes is non-zero. to determine whether more data is available to read, use feof() instead to read the value of this item.
unread_bytes (int) - the number of bytes currently in php's own internal buffer.
note: do not use this value in scripts.
the following items are newly added in php 4.3:
stream_type (string) - 一个描述流底层实现的标注。 wrapper_type (string) - 一个描述流的分层协议封装实现的标注。更多关于封装协议的信息见 支持的协议和封装协议。 wrapper_data (mixed) - 当前流附加的封装协议数据。更多封装协议及其数据的信息见 支持的协议和封装协议。 filters (array) - 包含有被叠加在当前流的任何过滤器名的数组。过滤器的文档见附录中的可用过滤器列表。
note:
this function was introduced in php 4.3. before this version, socket_get_status() could be used to obtain the first four items and could only be used for socket-based streams.
in php 4.3 and later versions, socket_get_status() is an alias of this function.
note: this function cannot be used on streams created through the socket extension library.
the following items are newly added in php 5.0:
mode (string) - 对当前流所要求的访问类型(见 fopen() 中的表格 1)。 seekable (bool) - 是否可以在当前流中定位。 uri (string) - 与当前流关联的 URI 或文件名。
the above is the basic content of php stream_get_meta_data return value_php. for more related content, please pay attention to php chinese website (www.php.cn)!
【recommended tutorials】
1. a full set of video tutorials on php programming from entry to master
2. php online manual
3. bootstrap tutorial

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

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

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

Alipay PHP...

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,

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

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.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...
