Data (RFC 2397)
The data: (» RFC 2397) stream wrapper is available since PHP 5.2.0.
Examples:
Print data:// contents
1 2 3 4 |
Fetch the media type
1 2 3 4 5 6 7 | <?php $meta = stream_get_meta_data( $fp ); // prints "text/plain" echo $meta [ 'mediatype' ]; ?> |
Please login to continue.