如何将文件属性设置为0777?

123*_*123 -4 php

如何将文件属性设置为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)