PHP pathinfo() 函數(shù)
PHP pathinfo() 函數(shù)
定義和用法
pathinfo() 函數(shù)以數(shù)組的形式返回關(guān)于文件路徑的信息。
返回的數(shù)組元素如下:
- [dirname]: 目錄路徑
- [basename]: 文件名
- [extension]: 文件后綴名
- [filename]: 不包含后綴的文件名
語法
pathinfo(path,options)
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要檢查的路徑。 |
options | 可選。規(guī)定要返回的數(shù)組元素。默認(rèn)是 all。 可能的值:
|
提示和注釋
注釋:如果不是請求所有的元素,則 pathinfo() 函數(shù)返回字符串。
實例
實例 1
<?php
print_r(pathinfo("/testweb/test.txt"));
?>
上面的代碼將輸出:
Array ( [dirname] => /testweb [basename] => test.txt [extension] => txt [filename] => test )
實例 2
<?php
print_r(pathinfo("/testweb/test.txt",PATHINFO_BASENAME));
?>
上面的代碼將輸出:
test.txt
相關(guān)文章
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 命名空間 namespace
- PHP array_column() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP current() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)