PHP dirname() 函数
PHP 教程
· 2019-01-24 18:28:21
定义和用法
dirname() 函数返回路径中的目录名称部分。
语法
dirname(path)
参数 | 描述 |
---|---|
path | 必需。规定要检查的路径。 |
实例
<?php echo dirname("c:/testweb/home.php") . "<br />"; echo dirname("/testweb/home.php"); ?>
上面的代码将输出:
c:/testweb /testweb
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Introduction to the Design and Analysis of Algorithms
Anany Levitin / Addison Wesley / 2011-10-10 / USD 117.00
Based on a new classification of algorithm design techniques and a clear delineation of analysis methods, Introduction to the Design and Analysis of Algorithms presents the subject in a coherent a......一起来看看 《Introduction to the Design and Analysis of Algorithms》 这本书的介绍吧!