Monday, 26 August 2013

PHP Function getcwd()

Syntax

string getcwd ( void );

Definition and Usage

Gets the current working directory.

Paramters

ParameterDescription
voidNA

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

No comments:

Post a Comment