php中的file_exists函數(shù)有什么作用

PHP
小億
88
2024-02-20 14:15:37

`file_exists`函數(shù)是PHP中的一個(gè)文件系統(tǒng)函數(shù),用于檢查指定路徑下的文件或目錄是否存在。其作用是判斷一個(gè)文件或目錄是否存在,如果存在則返回true,不存在則返回false。

```php

$file = 'path/to/your/file.txt';

if (file_exists($file)) {

echo "File exists.";

} else {

echo "File does not exist.";

}

```

在上面的示例中,`file_exists`函數(shù)用于檢查指定路徑下的文件是否存在,并根據(jù)結(jié)果輸出相應(yīng)的消息。

0