创建文件夹和子文件夹(链接到数据库用户标识

时间:2016-05-05 17:05:09

标签: php

创建文件夹和子文件夹(链接到数据库userid。没有创建子文件夹,用户的图像将被部署。如果有人可以hekp,我一直在与此争斗。这是下面的代码

function thread_proc():
  while(not terminate_signal):
    do_things

function stop_my_thread():
  terminate_signal.set();  // signals the thread to terminate
  thread.join();           // waits for the thread to terminate

1 个答案:

答案 0 :(得分:0)

使用此按名称创建文件夹

if(!file_exists('folder name'))
{ 
   mkdir('folder name',755);
}