Learning PHP
Advanced PHP
PHP Function Reference
PHP Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
PHP Function getcwd()
Syntax
Definition and Usage
Gets the current working directory.
Paramters
Parameter | Description |
void | NA |
Return Value
Returns the current working directory on success, or FALSE on failure.
Example
Following is the usage of this function:
<?php
// current directory
echo getcwd() . "\n";
getcwd('html');
// current directory
echo getcwd() . "\n";
?>
|
This will produce following result:
/home/tutorialspoint
/home/tutorialspoint/html
|
|
|
|