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.
$upload_path = **'./uploads'/**; // The place the files will be uploaded to
我想用登录用户名更改上传路径(正确:上传)。
你有没有尝试过这样的事情?
$user = "admin"; //or whatever $upload_path = "/uploads/" . $user;
我不太明白你的问题,但这里有一个例子
$upload_path = './' . ($logged_in ? $username : 'uploads') . '/';