如何授予PHP对目录的写入权限?

如何授予PHP对目录的写入权限?,第1张

如何授予PHP对目录写入权限

一种简单的方法是让PHP首先创建目录本身。

<?php $dir = 'myDir'; // create new directory with 744 permissions if it does not exist yet // owner will be the user/group the PHP script is run under if ( !file_exists($dir) ) {     mkdir ($dir, 0744); } file_put_contents ($dir.'/test.txt', 'Hello File');

这样可以节省您的权限麻烦。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5084921.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存