<?php$str = file_get_contents($file);?>
<?php$fp = fopen($file, 'r');while (($line = fgets($fp)) !== false) { $str .= $line;}fclose($fp);?>