PHP windows create hidden files

前端 未结 3 949
孤独总比滥情好
孤独总比滥情好 2021-01-06 09:16

Is it possible to create hidden files/folders on windows using php (xampp)? And if it is, how?

3条回答
  •  耶瑟儿~
    2021-01-06 10:10

    You could call attrib:

    $filename = 'c:\\some\\file.txt';
    exec('attrib +h '.$filename);
    

提交回复
热议问题