Is there a simple parsing function in php that will allow you to parse say this code below:
<?PHP
$handle = fopen ("fprice03.asc", "r");
while (!feof ($handle)) {
$buffer = fgets($handle, 4096);
//how do you parse $buffer into 4 parts, can this be done
//character length?
echo @'<br>';
}
fclose ($handle);
?>
parse the $buffer, so I may split the line into 4 chucks of data? If not any suggestion or past experiences on dealing with this, that you wouldn't mind sharing would be really helpful... thanks for your time.