在PHP中使用mkdir()获取动态创建的文件夹名称

时间:2013-03-06 16:16:47

标签: php mkdir

我使用

为我的php文件中的每个用户动态创建文件夹
mkdir("Userfiles/".$company."_".$time_stamp); 

我想将该目录保存在变量或其他任何目录中,我必须使用目录名来保存我的.txt文件

$myFile = "exfiles/".str_replace(" ","-",$_POST['company'])."_CC Booth furnishings ".$order_type."_".$time_stamp.".txt";

在'exfiles'的位置,我需要提供动态创建的目录名称。 任何帮助将不胜感激。 感谢

1 个答案:

答案 0 :(得分:1)

$dirname = "Userfiles/".$company."_".$time_stamp;
mkdir($dirname);
$myFile = $dirname . str_replace(" ","-",$_POST['company'])."_CC Booth furnishings ".$order_type."_".$time_stamp.".txt";

如您的问题评论中所述:

不要直接使用$ _POST数据来操作服务器上的文件。始终消毒