PHP dirname() 函數(shù)
PHP dirname() 函數(shù)

定義和用法
dirname() 函數(shù)返回路徑中的目錄名稱部分。
語法
dirname(path)
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要檢查的路徑。 |
實例
<?php
echo dirname("c:/testweb/home.php") . "<br />";
echo dirname("/testweb/home.php");
?>
echo dirname("c:/testweb/home.php") . "<br />";
echo dirname("/testweb/home.php");
?>
上面的代碼將輸出:
c:/testweb
/testweb
/testweb

相關(guān)文章
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP 面向?qū)ο?/a>
- PHP $_GET 變量
- PHP 高級過濾器
- PHP array_column() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP end() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 雜項 函數(shù)
- PHP 5 MySQLi 函數(shù)