「DokuWikiの使い方」に戻る
<html><pre class="code"></html> <php> echo file_get_contents("/var/www/html/data/hosts.txt"); </php> <html></pre></html>
<php> $fp = fopen("/var/www/html/data/hosts.txt", "r"); while ($line = fgets($fp)) { echo "$line<br />"; } fclose($fp); </php>