我一直在为我的网站创建一个用户文件系统。我试图在有人注册register.php页面时立即将它复制到我的错误文件夹中的index.php文件到用户个人资料图片文件夹。
这是我的web文件夹的树:
error/index.php, nofile.png
index.php
register.php
members/0,1,2,3,4,etc to 30. - User id's, new one made whenever someone signs up.
。
当有人注册到我的网站时,我希望将错误文件夹中的文件复制到members / $ id文件夹中。
请帮忙,
-Matt。
答案 0 :(得分:0)
在register.php中使用函数copy:
copy("error/index.php", "member/x/index.php");
其中x是分配给新用户的号码
该函数将第一个参数文件复制到第二个参数文件。
答案 1 :(得分:0)
试试这个
<?php
copy ($_SERVER['DOCUMENT_ROOT']."/error/index.php" , $_SERVER['DOCUMENT_ROOT']."/members/".$id."/index.php"); // $id is the user id like folder id
?>
它将复制index.php
感谢