close
例子
<?php
echo getcwd();
?>
輸出:
C:\testweb\main
<?php
// current directory
echo getcwd() . "\n";
chdir('cvs');
// current directory
echo getcwd() . "\n";
?>
輸出:
/home/didou
/home/didou/cvs
全站熱搜
例子
<?php
echo getcwd();
?>
輸出:
C:\testweb\main
<?php
// current directory
echo getcwd() . "\n";
chdir('cvs');
// current directory
echo getcwd() . "\n";
?>
輸出:
/home/didou
/home/didou/cvs