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.
我正在寻找一种在源中包含文件的方法,例如:
/public_html/source/sourcefiles/
当我在我的管理面板中创建一个新的“游戏”(在我的情况下)时,可能被称为类别,或者在其他项目中等等,将这些源文件复制到一个目录中,例如:
/public_html/games/gamename/sourcefiles_copied_here/
有没有办法做到这一点?
如果可能的话,我还需要一种在删除游戏/类别时删除它们的方法。
http://php.net/manual/en/function.copy.php
phpcopy函数可用于将文件从源复制到新目录。
copy
它是这样使用的:
copy(sourcedir, destdir);
请记住,与正在复制的文件同名的目标目录中已经存在的文件将被覆盖。
要移动文件,请使用该rename功能。
rename