Salut j'ai un script qui dynamiquement a créé un fichier sur mon répertoire local S'il vous plaît dites-moi comment puis-je donner la permission 777 à ce fichier maintenant il est inaccessible dans le navigateur
<?php
//Get the file
$content = 'http://xxx.xxx.com.mx/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/b/r/bridal-shoes1.jpg ';
$content1 = explode('/', $content);
$end = end($content1);
echo $end;
//print_r($content1[12]);
//Store in the filesystem.
$my_file = $end;
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); //implicitly creates file
$path = '/var/www/'.$end;
copy($content, $path);
?>
Utilisez la fonction chmod
chmod
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
chmod($file, 0777);
Utilisez chmod()
pour définir les autorisations de fichier.
Accordez la permission au fichier créé dynamiquement
$upPath = yourpath;
if(!file_exists($upPath))
{
$oldmask = umask(0);
mkdir($upPath, 0777, true);
umask($oldmask);
}
utilisation:
private function writeFileContent($file, $content){
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
chmod($file, 0777); //changed to add the zero
return true;
}
Vous pouvez utiliser chmod () pour ce faire.
par exemple. chmod($my_file, 0777);
ensemble default permission
vers le répertoire u r (c'est-à-dire rwx
) en utilisant setfacl command
ex: setfacl -d -m o::rwx your/directory/path
alors toute chose que vous créez dans ce répertoire nécessite la permission rwx
.
nous pouvons même ignorer * $ handle * il sera toujours créer = le fichier et copie le contenu du chemin $
<?php
//Get the file
$content = 'http://dev.aviesta.com.mx/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/b/r/bridal-shoes1.jpg ';
$content1 = explode('/', $content);
$end = end($content1);
echo $end;
//print_r($content1[12]);
//Store in the filesystem.
$my_file = $end;
$handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); //implicitly creates file
$path = '/var/www/'.$end;
copy($content, $path);
?>