gpt4 book ai didi

php - 授予777权限以在php中动态创建文件

转载 作者:IT王子 更新时间:2023-10-29 00:10:37 27 4
gpt4 key购买 nike

您好,我有一个脚本动态在我的本地目录上创建了一个文件请告诉我,我现在如何授予该文件 777 权限,它在浏览器中无法访问

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

?>

最佳答案

使用函数chmod
chmod

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

关于php - 授予777权限以在php中动态创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14193131/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com