php常用的包含文件的操作函数
在PHP中,有许多方式用于包含文件。以下是常用的一些包含文件的操作函数:
1. include(: 用于包含文件,如果包含失败,会产生一个警告,并且脚本会继续执行。
例如:
```php
include 'header.php';
```
2. require(: 用于包含文件,如果包含失败,会产生一个致命错误,并且脚本会停止执行。
例如:
```php
require 'config.php';
```
3. include_once(: 用于包含文件,如果文件已经包含过,则不会再次包含。
例如:
php延时函数```php
include_once 'functions.php';
```
4. require_once(: 用于包含文件,如果文件已经包含过,则不会再次包含。
例如:
```php
require_once 'constants.php';
```
5. get_include_path(: 返回当前的包含文件查路径。
例如:
```php
$path = get_include_path(;
```
6. set_include_path(: 设置包含文件的查路径。
例如:
```php
set_include_path('/path/to/files');
```
7. pathinfo(: 返回文件路径的信息,例如目录名、文件名等。
例如:
```php
$pathInfo = pathinfo('/path/to/file.php');
$dirname = $pathInfo['dirname'];
$basename = $pathInfo['basename'];
$extension = $pathInfo['extension'];
$filename = $pathInfo['filename'];
```
8. dirname(: 返回文件路径的目录部分。
例如:
```php
$dirname = dirname('/path/to/file.php');
```
9. basename(: 返回文件路径的最后一个部分,即文件名。
例如:
```php
$basename = basename('/path/to/file.php');
```
10. realpath(: 返回文件的绝对路径。
例如:
```php
$absolutePath = realpath('/path/to/file.php');
```
11. file_exists(: 检查文件是否存在。
例如:
```php
if (file_exists('/path/to/file.php'))
//文件存在
}
```
12. is_file(: 检查给定路径是否是一个文件。
例如:
```php
if (is_file('/path/to/file.php'))
//是一个文件
}
```
13. is_readable(: 检查文件是否可读。
例如:
```php
if (is_readable('/path/to/file.php'))
//文件可读
}
```
14. is_writable(: 检查文件是否可写。
例如:
```php
if (is_writable('/path/to/file.php'))
//文件可写
}
```
15. filesize(: 返回文件的大小。
例如:
```php
$size = filesize('/path/to/file.php');
```
16. file_get_contents(: 将整个文件读入一个字符串。
例如:
```php
$contents = file_get_contents('/path/to/file.php');
```
17. file_put_contents(: 将一个字符串写入文件。
例如:
```php
file_put_contents('/path/to/file.php', $contents);
```
18. file(: 将文件读入一个数组中。
例如:
```php
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论