PHP dirname() Function
Complete PHP Filesystem Reference
Definition and Usage
The dirname() function returns the directory name from a path.
Syntax
Parameter |
Description |
path |
Required. Specifies the path to check |
Example
<?php
echo dirname("c:/testweb/home.php") . "<br />";
echo dirname("/testweb/home.php");
?>
|
The output of the code above will be:
Complete PHP Filesystem Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|