| 情報学部 | 菅沼ホーム | 目次 | 索引 |
echo "カレントディレクトリ(変更前): ".getcwd()."<BR>\n";
chdir("../");
echo "カレントディレクトリ(変更後): ".getcwd()."<BR>\n"; カレントディレクトリ(変更前): /home/suganuma/public_html/temp カレントディレクトリ(変更後): /home/suganuma/public_html
$s = opendir("./");
while ($x = readdir($s)) {
echo $x." ";
if (is_file($x))
echo "ファイル<BR>\n";
else
echo "ディレクトリ<BR>\n";
}
closedir($s); . ディレクトリ .. ディレクトリ result ファイル test.php ファイル temp_dir ディレクトリ
echo "カレントディレクトリ(変更前): ".getcwd()."<BR>\n";
chdir("../");
echo "カレントディレクトリ(変更後): ".getcwd()."<BR>\n"; カレントディレクトリ(変更前): /home/suganuma/public_html/temp カレントディレクトリ(変更後): /home/suganuma/public_html
$s = opendir("./");
while ($x = readdir($s)) {
echo $x." ";
if (is_file($x))
echo "ファイル<BR>\n";
else
echo "ディレクトリ<BR>\n";
}
closedir($s); . ディレクトリ .. ディレクトリ result ファイル test.php ファイル temp_dir ディレクトリ
$s = opendir("./");
while ($x = readdir($s)) {
echo $x." ";
if (is_file($x))
echo "ファイル<BR>\n";
else
echo "ディレクトリ<BR>\n";
}
closedir($s); . ディレクトリ .. ディレクトリ result ファイル test.php ファイル temp_dir ディレクトリ
| 情報学部 | 菅沼ホーム | 目次 | 索引 |