ディレクトリを作成していますが、エラーが発生します
警告: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
}