php函式 PHP pathinfo 函式

2022-02-14 00:14:26 字數 607 閱讀 2270

pathinfo() 函式以陣列的形式返回檔案路徑的資訊。

pathinfo(path,options)
引數

描述path

必需。規定要檢查的路徑。

process_sections

可選。規定要返回的陣列元素。預設是 all。

可能的值:

pathinfo() 返回乙個關聯陣列包含有 path 的資訊。

包括以下的陣列元素:

注釋:如果不是要求取得所有單元,則 pathinfo() 函式返回字串。

<?php

print_r(pathinfo("/testweb/test.txt"));

?>

輸出:

array

([dirname] => /testweb

[basename] => test.txt

[extension] => txt

)

<?php

print_r(pathinfo("/testweb/test.txt",pathinfo_basename));

?>

輸出:

test.txt

php 除錯 函式,php除錯函式

除錯函式小結 1.debug backtrace 函式生成乙個backtrace。該函式返回乙個關聯陣列。下面是可能返回的元素 function 返回當前的函式名 line 當前的行數 file 當前的檔名 class 當前的類名 object 當前物件 type 當前的呼叫型別,可能的呼叫 返回 ...

php 採集常用函式 PHP常用採集函式

獲取所有鏈結內容和位址function getallurl code 獲取所有的位址 function getimgsrc code else fnum if fnum fnum 0 return fnum 去除html標記 function text2html txt isu r n txt re...

php入口函式,php 常用的系統函式

字串函式 strlen 獲取字串長度,位元組長度 substr 字串擷取,獲取字串 按照位元組進行擷取 strchr 與substr相似,從指定位置擷取一直到最後 strrchr 獲取檔案字尾名 與strchr一樣,只是從右邊開始查詢字元 strtolower 所有的字元都小寫 針對英文本母 str...