data://

Data (RFC 2397)

The data: (» RFC 2397) stream wrapper is available since PHP 5.2.0.

Examples:
Print data:// contents
1
2
3
4
<?php
// prints "I love PHP"
echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo=');
?>
Fetch the media type
1
2
3
4
5
6
7
<?php
$fp   fopen('data://text/plain;base64,''r');
$meta = stream_get_meta_data($fp);
 
// prints "text/plain"
echo $meta['mediatype'];
?>
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.