web-dev-qa-db-fra.com

Donnez à 777 l'autorisation de créer un fichier créé dynamiquement en php

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);

 ?>
19
Rohit Goel

Utilisez la fonction chmod
chmod

$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
chmod($file, 0777); 
37

Utilisez chmod() pour définir les autorisations de fichier.

3

Accordez la permission au fichier créé dynamiquement

                  $upPath = yourpath;
                    if(!file_exists($upPath)) 
                    {
                        $oldmask = umask(0);
                        mkdir($upPath, 0777, true);
                        umask($oldmask);
                    }  
2
Hiren Makwana

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;
}
2
Elton da Costa

Vous pouvez utiliser chmod () pour ce faire.

par exemple. chmod($my_file, 0777);

0
Thomas Clayson

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.

0
SameerJ

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);

     ?>
0
Rohit Goel