PHP code example of pear / stream_var

1. Go to this page and download the library: Download pear/stream_var library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pear / stream_var example snippets


    stream_wrapper_register('var', 'Stream_Var');

    $GLOBALS['somefile'] = "blah blah blah\n";

    echo file_get_contents('var://GLOBALS/somefile');
    //outputs "blah blah blah\n"