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.
我正在尝试在我的用户注册后为其创建一个文件夹,但是即使语法没有错误,它仍然不想创建该文件夹。我需要编辑我的任何服务器 php 配置吗?
$dirpath = "/users/".$username; mkdir($dirpath);
尝试
<?php $dirpath = "/users/".$username; mkdir($dirpath, 0700); ?>
模式默认为 0777,表示访问范围最广。有关模式的更多信息,请阅读 chmod() 页面上的详细信息。
如果您正在使用 Windows 操作系统模式,则将被忽略。
您需要确保目录“/users”对于您的网络服务器运行的任何用户都是可写的。