<?php $fp = example_open("/path/to/file"); fwrite($fp, "hello there\n"); rewind($fp); echo fgets($fp); ?>
<?php $fp = fopen("example:///path/to/file"); fwrite($fp, "hello there\n"); rewind($fp); echo fgets($fp); ?>