如何将文件属性设置为0777,我通过php创建文件创建?
$myFile = "test.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = 'test';
fwrite($fh, $stringData);
fclose($fh);
Run Code Online (Sandbox Code Playgroud)
chmod("/somedir/somefile", 0777);
Run Code Online (Sandbox Code Playgroud)
根据:http://php.net/manual/fr/function.chmod.php