🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# xn\_is\_writable() ## xn\_is\_writable() ``` <pre class="calibre11">``` xn_is_writable($file) ``` ``` #### 【功能】 检测文件或目录是否可写,兼容 Windows。 #### 【参数】 ``` <pre class="calibre11">``` $file:文件/目录路径 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; $file = './log/'; $r = xn_is_writable($file); // 结果: TRUE/FALSE ?> ``` ```