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://codercto.com/courses/l/5.html
Purely Functional Data Structures
Chris Okasaki / Cambridge University Press / 1999-6-13 / USD 49.99
Most books on data structures assume an imperative language such as C or C++. However, data structures for these languages do not always translate well to functional languages such as Standard ML, Ha......一起来看看 《Purely Functional Data Structures》 这本书的介绍吧!