load rtf file

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I have a big giant RTF file. I could convert it to plain text. BUT can PHP do it for me?

Also:

I want to read the text file into a string. This does the job well, right?
http://php.net/manual/en/function.file-get-contents.php

This is it? Not more complicated?

|<?php
$homepage = file_get_contents('http://www.example.com/text.txt');
echo $homepage;
?> |

What about this?
http://www.php.net/manual/en/function.file.php

||<?php
|$lines = file('http://www.example.com/');|
|echo $lines;
?>|

Is there any big difference?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux