Directory Функции
PHP Manual

getcwd

(PHP 4, PHP 5)

getcwdGets the current working directory

Описание

string getcwd ( void )

Gets the current working directory.

Връщани стойности

Returns the current working directory on success, or FALSE on failure.

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";

?>

Примерът по-горе ще изведе нещо подобно на:

/home/didou
/home/didou/cvs

Вж. също


Directory Функции
PHP Manual