getcwd
Description
string getcwd ( void )Returns the current working directory.


Example 1. getcwd() example
<?php
// current directory
echo getcwd() . "\n";
chdir('cvs');
// current directory
echo getcwd() . "\n";
?>
This example will output something like:
/home/didou /home/didou/cvs
See also chdir().



