我正在创建一个目录,但我收到了错误
警告:chmod() [function.chmod]:第 104 行的 /home/www/public_html/console/pubs-add.php 中没有这样的文件或目录
运行代码的 php 文件位于 www/console 中,而我尝试创建的目录位于 www/images/gallery 中。
我尝试了许多设置路径的变体,例如 ../images/gallery 或 home/www 但似乎没有任何效果
define("PATH", "/www/images/gallery");
$dir = 'a1234';
$targetfilename = PATH . '/' . $dir;
if (!is_file($dir) && !is_dir($dir)) {
mkdir($dir); //create the directory
chmod($targetfilename, 0777); //make it writable
}