Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用parse_ini_file函数读取ini文件时工作正常。但是当我读取隐藏的ini文件或系统文件时:
parse_ini_file
[function.file-put-contents]:无法打开流:D:\wamp\www 中的权限被拒绝
当我创建我使用的ini文件时,我file_put_contents使用以下代码将文件转换为隐藏文件:
file_put_contents
system('attrib +s +h ' . escapeshellarg($filename));
如何读取隐藏文件?