PHP Manual by the PHP Documentation Group php.net
getcwd
(PHP 4 , PHP 5)
getcwd -- Gets the current working directory
Description
string
getcwd ( void )
Returns the current working directory, or FALSE on failure.
Note:
On some Unix variants, getcwd() will return
FALSE if any one of the parent directories does not have the
readable or search mode set, even if the current directory
does. See chmod() for more information on
modes and permissions.
Example 1. getcwd() example
<?php
// current directory echo getcwd() . "\n";
chdir('cvs');
// current directory echo getcwd() . "\n";
?>
|
The above example will output
something similar to: /home/didou
/home/didou/cvs |
|
See also chdir() and
chmod().
© 2001 - 2009 CYGAD.NET | All rights reserved. |
Terms of Service |
About | Time data: GMT +1! | Portal Release X2.6.1 Beta | RunTime: 0.4373
Optimized for

Internet Explorer 6.0+,

Firefox 1.5+!