file_exists() PHP関数

file_exists()関数

構文

file_exists(ファイルパス 又は フォルダ・ディレクトリ名)

file_exists()関数の詳細

 動 作 

exists = 存在するの三人称単数

指定したファイル 又は ディレクトリが存在すればTRUE、存在しなければFALSEを返す。

 

 引 数 

ファイルパス

//Aディレクトリ/Bディレクトリ/ファイル

フォルダ・ディレクトリ名

 

file_exists()関数を使ったコード例

 実装 

<?php
$test='/Aディレクトリ/Bディレクトリ/test.txt';
file_exists($test);

file_exists(フォルダ名);
?>

PHPのおすすめ

おすすめ

 

スポンサードリンク

スポンサードリンク