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