一种简单的方法是让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');
这样可以节省您的权限麻烦。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)