« PHP:ディレクトリを削除する | メイン | PHP:unlink()関数 »
2006年04月27日
PHP:filetype()関数
filetype()関数は、引数のファイルタイプを返します。
$filePath = 'test/sample.php';
print filetype($filePath);
※上記の結果、「file」を出力します。
※ディレクトリを指定した場合、「dir」を返します。
投稿者 wing : 2006年04月27日 01:01
|
« PHP:ディレクトリを削除する | メイン | PHP:unlink()関数 » 2006年04月27日PHP:filetype()関数filetype()関数は、引数のファイルタイプを返します。 $filePath = 'test/sample.php'; ※上記の結果、「file」を出力します。 ※ディレクトリを指定した場合、「dir」を返します。 投稿者 wing : 2006年04月27日 01:01
コメント |
|