Làm cách nào để lấy dữ liệu meta từ URL trong PHP?

PHP. hàm stream_get_meta_data[]

Cải thiện bài viết

Lưu bài viết

Thích bài viết

  • Cập nhật lần cuối. 16 tháng 7 năm 2021

  • Đọc
  • Bàn luận
  • khóa học
  • Luyện tập
  • Băng hình
  • Cải thiện bài viết

    Lưu bài viết

    Hàm stream_get_meta_data[] là một hàm sẵn có trong PHP được sử dụng để lấy tiêu đề hoặc siêu dữ liệu từ con trỏ luồng/tệp.
    Cú pháp.
     

    array stream_get_meta_data[ $stream ]

    Thông số. Hàm chấp nhận tham số duy nhất $stream, chỉ định dữ liệu meta cần truy xuất và được tạo bởi bất kỳ hàm nào fopen[], fsockopen[] và pfsockopen[].
    Giá trị trả về. Hàm này trả về một mảng chứa các mục sau.
     

    • hết giờ. Đó là một mục kiểu boolean và TRUE nếu luồng đã hết thời gian chờ
    • bị chặn. Đây là một mục kiểu boolean và là True nếu luồng đang ở chế độ IO chặn
    • eof[bool] Nó là tùy chọn. Đó là True nếu luồng đạt đến ở cuối tệp
    • unread_bytes. Số byte trong bộ đệm trong
    • stream_type. Nó được sử dụng để chỉ định việc thực hiện luồng
    • trình bao bọc_type. Nó được sử dụng để chỉ định lớp triển khai trình bao bọc giao thức
    • trình bao bọc_data. Đó là một dữ liệu cụ thể được đính kèm với luồng này
    • cách thức. Đây là loại quyền truy cập cần thiết cho luồng này
    • có thể tìm được. Đó là sự thật khi luồng hiện tại tìm kiếm
    • nước tiểu. Mã định danh tài nguyên thống nhất do người dùng cung cấp

    Dưới đây là các chương trình minh họa hàm stream_get_meta_data[] trong PHP.
    Chương trình 1.
     

    PHP




    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    6

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    1
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    2

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    2_______13
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    5
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    6
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    12
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    15
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0____17

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    18

    đầu ra.

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]

     

    Chương trình 2. Chương trình in ra độ dài của mảng do hàm trả về.
     

    php




    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    6

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    62

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    65
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    2

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    67

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    68
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    69
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    70
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    2
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    3
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    5
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    6
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    77

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    78
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    79____380
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    81

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    82

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    70
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    0
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    2_______13
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    5
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    6
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    9
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    70
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    7

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    95
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    96
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    8
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    98

     

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    15
    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    70____17

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    18

    đầu ra.

    Array
    [
        [timed_out] => 
        [blocked] => 1
        [eof] => 
        [wrapper_data] => Array
            [
                [0] => HTTP/1.1 200 OK
                [1] => Server: nginx/1.10.3
                [2] => Date: Mon, 17 Dec 2018 11:04:39 GMT
                [3] => Content-Type: text/html; charset=utf-8
                [4] => Connection: close
                [5] => Content-language: en
                [6] => X-Frame-Options: SAMEORIGIN
                [7] => Set-Cookie: LAST_LANG=en; expires=Tue, 17-Dec-2019 11:04:39 GMT; Max-Age=31536000; path=/; domain=.php.net
                [8] => Set-Cookie: COUNTRY=NA%2C54.201.119.186; expires=Mon, 24-Dec-2018 11:04:39 GMT; Max-Age=604800; path=/; domain=.php.net
                [9] => Link: ; rel=shorturl
                [10] => Last-Modified: Mon, 17 Dec 2018 05:06:18 GMT
                [11] => Vary: Accept-Encoding
            ]
    
        [wrapper_type] => http
        [stream_type] => tcp_socket/ssl
        [mode] => r
        [unread_bytes] => 7647
        [seekable] => 
        [uri] => //php.net/manual/en/function.stream-get-meta-data.php
    ]
    1

     

    Tham khảo. http. //php. net/thủ công/vi/chức năng. luồng-nhận-siêu-dữ liệu. php
     


    Ghi chú cá nhân của tôi arrow_drop_up

    Tiết kiệm

    Vui lòng Đăng nhập để nhận xét.

    Làm cách nào để lấy dữ liệu meta trong PHP?

    Dữ liệu meta được truy cập thông qua giao diện mysqli_result . Dữ liệu meta của các tập kết quả được tạo bằng các câu lệnh đã chuẩn bị được truy cập theo cùng một cách. Một điều khiển mysqli_result phù hợp được trả về bởi mysqli_stmt. result_metadata[].

    Làm cách nào để thêm tiêu đề và mô tả meta trong PHP?

    Let's look at an example of code we might find in header. php : Page Title Here
    . . .

    Mô tả meta cho một trang web là gì?

    Thẻ mô tả meta thường thông báo và thu hút người dùng bằng một bản tóm tắt ngắn gọn, có liên quan về nội dung của một trang cụ thể . Chúng giống như một quảng cáo chiêu hàng thuyết phục người dùng rằng trang này chính xác là những gì họ đang tìm kiếm.

    Làm cách nào để lấy tiêu đề của một trang trong PHP?

    Mã PHP để lấy tiêu đề trang web từ URL. php // hàm lấy tiêu đề trang web function getTitle[$url] { $page = file_get_contents[$url]; . *?] /ims', $page, $match] ? $match[1 . vô giá trị; . '. // get web page title echo 'Title: ' .

    Chủ Đề