![]() |
|
|
+ Search |
![]()
|
Mar 15th, 2008 18:16
ha mo, Philip Olson, Marshall Bowling,
There are many ways to do this. If you're simply dumping text (and not
processing it) then use readfile()
<?php
readfile('somefile.ext');
?>
If your file contains valid PHP code and you want it processed, one of
the include functions will do this:
<?php
include 'somefile.ext';
?>
If you want the contents of the file into a string or an array, use
either file() or file_get_contents():
<?php
$filename = 'somefile.ext';
$array_of_lines = file($filename);
$string_from_file = file_get_contents($filename);
?>
See also the manual entries for details:
http://www.php.net/readfile
http://www.php.net/include
http://www.php.net/file
http://www.php.net/file_get_contents
Note that the above functions may also work through HTTP (URLS).
http://www.tantofa.com
http://www.fantofa.com
http://www.mantofa.com
http://www.tanpola.com
http://www.tampola.com
http://www.yamot.com
http://www.mozmar.com
http://www.templatestemp.com