demo_func_filesystem_fgetc.php:
<!DOCTYPE html> <html> <body> <?php $file = fopen("test.txt","r"); echo fgetc($file); fclose($file); ?> </body> </html>