fgetc()` to read a single character from a file :<?php
// Open file for reading
$file = fopen("example.txt", "r");
// Read file character by character using fgetc() function
while (!feof($file)) {
$char = fgetc($file);
echo $char . "\n";
}
// Close file
fclose($file);
?>fopen()` function to open a file named "example.txt" in read mode ("r"). fgetc()` function. feof()` function returns true, indicating that the end of the file has been reached. echo` statement, along with a newline character to separate the characters. fclose()` function to close the file after we are done reading from it.