PHP - File Handling
Given the file
data.txt contains "1234567890", what will this code output?$fp = fopen('data.txt', 'r');
echo fread($fp, 4);