PHP -> Funkcie -> Adresárové funkcie PHP -> funkcia chdir
Syntax
int chdir ( string directory )
Popis
Príkaz jazyka PHP
Mění aktuální adresář PHP na directory. Pokud se nepodařilo změnít adresář, vrací FALSE, jinak TRUE.
Poznámka: When safe mode is enabled, PHP checks whether the directory in which you are about to operate has the same UID (owner) as the script that is being executed.
Príklad
<?php
// current directory
echo getcwd() .
"\n";
chdir('public_html');
// current directory
echo getcwd() .
"\n";
/*Výstup môže byť napr.:
/home/vincent
/home/vincent/public_html
*/
?>
Pozri aj
getcwd