Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

stream_get_meta_data

Description

The stream_get_meta_data Stream for PHP retrieves header/meta data from streams/file pointers.

Syntax

stream_get_meta_data ( resource $stream ) : array

Parameters

stream

The stream can be any stream created by fopen(), fsockopen() and pfsockopen().

Return

The result array contains the following items:

ItemDescription
timed_out (bool)TRUE if the stream timed out while waiting for data on 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 has reached end-of-file. Note that for socket streams this member can be TRUE even when unread_bytes is non-zero. To determine if there is more data to be read, use feof() instead of reading this item.
wrapper_data (mixed)wrapper specific data attached to this stream. See Supported Protocols and Wrappers for more information about wrappers and their wrapper data.
wrapper_type (string)a label describing the protocol wrapper implementation layered over the stream. See Supported Protocols and Wrappers for more information about wrappers.
stream_type (string)a label describing the underlying implementation of the stream.
mode (string)the type of access required for this stream.
unread_bytes (int)the number of bytes currently contained in the PHP's own internal buffer. Note: You shouldn't use this value in a script.
seekable (bool)whether the current stream can be seeked.
uri (string)the URI/filename associated with this stream.

Examples

1

<?

$filename = "https://www.php.net/";
$mode = "r";

$handle = fopen($filename, $mode);

    $return = stream_get_meta_data($handle);

    print_r($return);

fclose($handle);

?>
Array
(
    [crypto] => Array
        (
            [protocol] => TLSv1.2
            [cipher_name] => ECDHE-ECDSA-AES128-GCM-SHA256
            [cipher_bits] => 128
            [cipher_version] => TLSv1.2
        )

    [timed_out] => 
    [blocked] => 1
    [eof] => 
    [wrapper_data] => Array
        (
            [0] => HTTP/1.1 200 OK
            [1] => Server: myracloud
            [2] => Date: Fri, 15 Mar 2024 05:35:27 GMT
            [3] => Content-Type: text/html; charset=utf-8
            [4] => Connection: close
            [5] => Last-Modified: Fri, 15 Mar 2024 05:30:10 GMT
            [6] => Content-language: en
            [7] => Permissions-Policy: interest-cohort=()
            [8] => X-Frame-Options: SAMEORIGIN
            [9] => Set-Cookie: COUNTRY=NA%2C80.90.13.131; expires=Fri, 22 Mar 2024 05:35:27 GMT; Max-Age=604800; path=/; domain=.php.net
            [10] => Set-Cookie: LAST_NEWS=1710480927; expires=Sat, 15 Mar 2025 05:35:27 GMT; Max-Age=31536000; path=/; domain=.php.net
            [11] => Link: <https://www.php.net/index>; rel=shorturl
            [12] => Expires: Fri, 15 Mar 2024 05:35:27 GMT
            [13] => Cache-Control: max-age=0
        )

    [wrapper_type] => http
    [stream_type] => tcp_socket/ssl
    [mode] => r
    [unread_bytes] => 7537
    [seekable] => 
    [uri] => https://www.php.net/
)
HomeMenu