1.你可以在phpinfo()中找到的.
2.下例就是用八进位的例子,建立 /path/to/my/dir 目录,该目录只有拥有者及 root 等级可读写执行,其它人无法使用。 <?php
mkdir("/path/to/my/dir", 0700);
?>

解决方案 »

  1.   

    1.
    getcwd()
    getcwdgets the current working directory (PHP 4 >= 4.0.0) 
    string getcwd(void)
    Returns the current working directory. 
    2.
    mkdir()
    mkdirMakes directory (PHP 3, PHP 4 >= 4.0.0) 
    int mkdir(string pathname, int mode)
    Attempts to create the directory specified by pathname. 
    Note that you probably want to specify the mode as an octal number, which means it should have a leading zero. The mode is also modified by the current umask, which you can change using umask(). 
    mkdir ("/path/to/my/dir", 0700); 
    Returns TRUE on success and FALSE on failure.
      

  2.   

    askexpert(俺是农民) 你什么时候给我答了?
    uGain(幽亘) 把第一个问题给答了,可第二个问题还是不能解决。