PHP - File Handling
What will the following PHP code output if the file 'example.txt' exists and is 150 bytes in size?
$file = 'example.txt';
if (file_exists($file)) {
echo filesize($file);
} else {
echo 'File not found';
}