cwd ( ) PHP... cd, exec(), , exec() , .
<?php
$olddir = getcwd();
chdir('/path/to/new/dir'); //change to new dir
exec('somecommand');
somecommand /path/to/new/dir.
<?php
exec('cd /path/to/new/dir');
exec('somecommand');
somecommand , PHP script from - the cd, , .
, - :
<?php
exec('cd /path/to/new/dir ; somecommand');
... , , .