> I am trying to get php 4.1.2 to read a Mac file (exported from > FileMaker Pro) and split it into different lines using the following > but php does not recognize the end of line. For some tech reason I > cannot upgrade php now but I need to be able to read my Mac files > now. What is the easiest : edit the Mac file and replace the end of > line or modify the script below? In any case I need help to know > exactly what to do. > > // first read the entire file > $file = file($Export_ImageBank);
I know Macs use \r as the end of line. file() may only look for \n. You can read the entire file into a variable and then use explode() on \r to achieve the same results as file(). ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php