当前位置: 首页>>代码示例>>PHP>>正文


PHP dir_copy函数代码示例

本文整理汇总了PHP中dir_copy函数的典型用法代码示例。如果您正苦于以下问题:PHP dir_copy函数的具体用法?PHP dir_copy怎么用?PHP dir_copy使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了dir_copy函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: createProject

 public static function createProject($argProjectName = '')
 {
     $conName = PROJECT_NAME . "Configure";
     debug('$argProjectName=' . $argProjectName);
     $samplePackage = $conName::SAMPLE_PROJECT_PACKAGE_PATH;
     $newProjectName = str_replace('Package', '', ucfirst($argProjectName . basename($samplePackage)));
     debug('$newProjectName=' . $newProjectName);
     // 移動先のパス
     $movePath = dirname($conName::PROJECT_ROOT_PATH) . '/' . $newProjectName . 'Package';
     debug('$movePath=' . $movePath);
     if (!dir_copy($samplePackage, $movePath)) {
         return FALSE;
     }
     // プロジェクト名が指定されている場合は、デフォルトの定義を書き換えて上げる為の処理
     if ('' !== $argProjectName) {
         // config.xmlのファイル名を書き換える
         $newConfigXMLPath = $movePath . '/core/' . $newProjectName . '.config.xml';
         rename($movePath . '/core/Project.config.xml', $newConfigXMLPath);
         // package.xmlのファイル名を書き換える
         rename($movePath . '/core/Project.package.xml', $movePath . '/core/' . $newProjectName . '.package.xml');
         // config.xml内のプロジェクト名を書き換える
         $configXMLStr = file_get_contents($newConfigXMLPath);
         $configXMLStr = str_replace(array('<Project>', '</Project>'), array('<' . $newProjectName . '>', '</' . $newProjectName . '>'), $configXMLStr);
         // 新しい定義で書き換え
         file_put_contents($newConfigXMLPath, $configXMLStr);
         // 重いのでコマメにunset
         unset($configXMLStr);
         // installer内のプロジェクト名を書き換える
         $installerStr = file_get_contents($movePath . '/installer.php');
         $installerStr = str_replace('$projectpkgName = "Project";', '$projectpkgName = "' . ucfirst($newProjectName) . '";', $installerStr);
         // 新しい定義で書き換え
         file_put_contents($movePath . '/installer.php', $installerStr);
         // 重いのでコマメにunset
         unset($installerStr);
         // RESRAPI-index内のプロジェクト名を書き換える
         $apidocPath = $movePath . '/apidocs';
         $apiIndexStr = file_get_contents($apidocPath . '/index.php');
         $apiIndexStr = str_replace('$projectpkgName = "Project";', '$projectpkgName = "' . ucfirst($newProjectName) . '";', $apiIndexStr);
         // 新しい定義で書き換え
         file_put_contents($movePath . '/apidocs/index.php', $apiIndexStr);
         // 重いのでコマメにunset
         unset($apiIndexStr);
         // iOSサンプル内のプロジェクト内のRESTfulAPIの向け先を帰る
         $iosdefineStr = file_get_contents($movePath . '/iOSSample/Project/SupportingFiles/define.h');
         // レビュー用の暫定処理
         $basePath = str_replace('/' . PROJECT_NAME . '/', '|', $_SERVER["REQUEST_URI"]);
         $basePaths = explode('|', $basePath);
         $iosdefineStr = str_replace('# define URL_BASE @"/workspace/UNICORN/src/lib/FrameworkManager/template/managedocs/"', '# define URL_BASE @"' . $basePaths[0] . '/' . $newProjectName . 'Package/apidocs/' . '"', $iosdefineStr);
         // 新しい定義で書き換え
         file_put_contents($movePath . '/iOSSample/Project/SupportingFiles/define.h', $iosdefineStr);
         // 重いのでコマメにunset
         unset($iosdefineStr);
     }
     return TRUE;
 }
开发者ID:s-nakazawa,项目名称:UNICORN,代码行数:55,代码来源:ProjectManager.class.php

示例2: dir_copy

function dir_copy($src, $dst)
{
    $dir = opendir($src);
    @mkdir($dst);
    while (false !== ($file = readdir($dir))) {
        if ($file != '.' && $file != '..') {
            if (is_dir($src . '/' . $file)) {
                dir_copy($src . '/' . $file, $dst . '/' . $file);
            }
        }
    }
    closedir($dir);
}
开发者ID:puregamexyz,项目名称:bitdesign.github.io,代码行数:13,代码来源:FileUtil.php

示例3: dir_copy

function dir_copy($dir_name, $new_dir)
{
    if (!is_dir($new_dir)) {
        mkdir($new_dir);
    }
    if (is_dir($dir_name)) {
        if ($dh = opendir($dir_name)) {
            while (($file = readdir($dh)) !== false) {
                if ($file == "." || $file == "..") {
                    continue;
                }
                if (is_dir($dir_name . "/" . $file)) {
                    dir_copy($dir_name . "/" . $file, $new_dir . "/" . $file);
                } else {
                    copy($dir_name . "/" . $file, $new_dir . "/" . $file);
                }
            }
            closedir($dh);
        }
    }
    return true;
}
开发者ID:curseoff,项目名称:pgit,代码行数:22,代码来源:common.php

示例4: insert

 function insert()
 {
     $lang_path = LANG_PATH . $_POST['mark'] . '/';
     $r = dir_copy(LANG_PATH . 'cn/', $lang_path);
     $name = MODULE_NAME;
     $model = D($name);
     if (false === $model->create()) {
         $this->error($model->getError());
     }
     $id = $model->add();
     if ($id !== false) {
         $db = D('');
         $db = DB::getInstance();
         $db->execute("INSERT INTO `yourphp_config`  (`varname`,`info`,`groupid`,`value`,`lang`) VALUES ('site_name','网站名称','2','','" . $id . "'),\n\t\t\t('site_url','网站网址','2','','" . $id . "'),\n\t\t\t('logo','网站LOGO','2','./Public/Images/logo.gif','" . $id . "'),\n\t\t\t('site_email','站点邮箱','2','admin@yourphp.cn','" . $id . "'),\n\t\t\t('seo_title','网站标题','2','','" . $id . "'),\n\t\t\t('seo_keywords','关键词','2','','" . $id . "'),\n\t\t\t('seo_description','网站简介','2','','" . $id . "'),\n\t\t\t('member_register','允许新会员注册','3','1','" . $id . "'),\n\t\t\t('member_emailcheck','新会员注册需要邮件验证','3','0','" . $id . "'),\n\t\t\t('member_registecheck','新会员注册需要审核','3','1','" . $id . "'),\n\t\t\t('member_login_verify','注册登陆开启验证码','3','1','" . $id . "'),\n\t\t\t('member_emailchecktpl','邮件认证模板','3','','" . $id . "'),\n\t\t\t('member_getpwdemaitpl','密码找回邮件内容','3','','" . $id . "')\n\t\t\t;");
         if (in_array($name, $this->cache_model)) {
             savecache($name);
         }
         $jumpUrl = $_POST['forward'] ? $_POST['forward'] : U(MODULE_NAME . '/index');
         $this->assign('jumpUrl', $jumpUrl);
         $this->success(L('add_ok'));
     } else {
         $this->error(L('add_error') . ': ' . $model->getDbError());
     }
 }
开发者ID:JavaAFei,项目名称:yun001,代码行数:24,代码来源:LangAction.class.php

示例5: dir_copy

/**
 * 拷贝目录及下面所有文件
 *
 * @param	string	$fromdir	原路径
 * @param	string	$todir		目标路径
 * @return	string	如果目标路径不存在则返回false,否则为true
 */
function dir_copy($fromdir, $todir)
{
    $fromdir = dir_path($fromdir);
    $todir = dir_path($todir);
    if (!is_dir($fromdir)) {
        return FALSE;
    }
    if (!is_dir($todir)) {
        dir_create($todir);
    }
    $list = glob($fromdir . '*');
    if (!empty($list)) {
        foreach ($list as $v) {
            $path = $todir . basename($v);
            if (is_dir($v)) {
                dir_copy($v, $path);
            } else {
                copy($v, $path);
                @chmod($path, 0777);
            }
        }
    }
    return TRUE;
}
开发者ID:290329416,项目名称:guahao,代码行数:31,代码来源:dir.php

示例6: Site

    // Fetch the site.
    $site =& new Site($sitename);
    $site->fetchDown(TRUE);
    $site->fetchSiteAtOnceForeverAndEverAndDontForgetThePermissionsAsWell_Amen();
    // Fetch the location of the media files.
    $imagepath = $uploaddir . '/' . $sitename . '/';
    // Get the XML for the site
    $siteExporter =& new DomitSiteExporter();
    $siteXML =& $siteExporter->export($site);
    // make a directory for the site contents
    $siteDir = $exportpath . '/' . $sitename . '/';
    if (file_exists($siteDir)) {
        deletePath($siteDir);
    }
    mkdir($siteDir);
    // Copy the Media Files to the sitedir.
    dir_copy($imagepath, $siteDir . 'media/');
    // Save the XML to a file.
    $xmlFile = $siteDir . 'site.xml';
    if (!($handle = fopen($xmlFile, 'a'))) {
        echo "Cannot open file ({$xmlFile})";
        exit;
    }
    // Write $somecontent to our opened file.
    if (!fwrite($handle, $siteXML)) {
        echo "Cannot write to file ({$xmlFile})";
        exit;
    }
    fclose($handle);
}
exit(0);
开发者ID:adamfranco,项目名称:segue-1.x,代码行数:31,代码来源:export_site.php

示例7: tabheader

 $do_enable = $n_operated || !isset($stepeds['freeinfos']) ? false : true;
 //如果上一步没有完成,这一步不能开始
 $undo_enable = !$n_operated ? false : true;
 //如果上一步没有撤消,这一步不能撤消
 $true_tpldir = M_ROOT . "./template/" . $subsites[$nsid]['templatedir'] . '/';
 if (!submitcheck('bdo') && !submitcheck('bundo')) {
     tabheader(lang('subtemtra') . '&nbsp; -&nbsp; ' . ($n_operated ? '&nbsp; Y' : '&nbsp; N'), 'templates', '?entry=subsetup&action=templates');
     echo "<tr class=\"txt\"><td class=\"txtC\" colspan=\"2\"><br>";
     echo empty($n_operated) ? lang('templatesdo') : lang('templatesundo');
     echo "<br><br></td></tr>";
     tabfooter();
     echo "<input class=\"button\" type=\"submit\" name=\"bdo\" value=\"" . lang('nextstep') . "\"" . ($do_enable ? '' : ' disabled') . ">&nbsp; &nbsp; ";
     echo "<input class=\"button\" type=\"submit\" name=\"bundo\" value=\"" . lang('undosetting') . "\"" . ($undo_enable ? '' : ' disabled') . ">&nbsp; &nbsp; ";
     echo "</form>\n";
 } elseif (submitcheck('bdo')) {
     if (!dir_copy($subsetupdir . 'template/', $true_tpldir, 1, 1)) {
         amessage('telcopyerror');
     }
     $tagsarr = $tplsarr = array();
     $omtpls = oread_cache('mtpls', '', '', 'template');
     foreach ($omtpls as $k => $v) {
         $tplsarr[] = $k;
     }
     $osptpls = oread_cache('sptpls', '', '', 'template');
     foreach ($osptpls as $k => $v) {
         $tplsarr[] = $v;
     }
     foreach ($tplsarr as $v) {
         $str = @file2str($subsetupdir . 'template/' . $v);
         oreplace($str, 'p');
         oreplace($str, 'c');
开发者ID:polarlight1989,项目名称:08cms,代码行数:31,代码来源:subsetup.inc.php

示例8: msg

         if ($password == $oldpassword) {
             msg('新密码不能与现有密码相同');
         }
         $password = md5(md5($password));
         $db->query("UPDATE {$DT_PRE}member SET password='{$password}' WHERE userid='{$_userid}'");
         userclean($_username);
         msg('管理员密码修改成功', '?action=main');
     } else {
         include tpl('password');
     }
     break;
 case 'static':
     if ($itemid) {
         foreach (array(DT_ROOT . '/file/flash/', DT_ROOT . '/file/image/', DT_ROOT . '/file/script/', DT_ROOT . '/skin/' . $CFG['skin'] . '/', DT_ROOT . '/' . $MODULE[2]['moduledir'] . '/image/', DT_ROOT . '/' . $MODULE[4]['moduledir'] . '/skin/') as $d) {
             $s = str_replace(DT_ROOT, DT_ROOT . '/file/static', $d);
             dir_copy($d, $s);
         }
         foreach (array(DT_ROOT . '/favicon.ico', DT_ROOT . '/lang/' . DT_LANG . '/lang.js') as $d) {
             $s = str_replace(DT_ROOT, DT_ROOT . '/file/static', $d);
             file_copy($d, $s);
         }
     }
     include tpl('static');
     break;
 case 'side':
     $files = glob(DT_CACHE . '/*.part');
     $spart = 0;
     if ($files) {
         foreach ($files as $f) {
             $mid = basename($f, '.part');
             if (!isset($MODULE[$mid])) {
开发者ID:hcd2008,项目名称:destoon,代码行数:31,代码来源:index.inc.php

示例9: dir_copy

function dir_copy($fromdir, $todir)
{
    $fromdir = dir_path($fromdir);
    $todir = dir_path($todir);
    if (!is_dir($fromdir)) {
        return false;
    }
    if (!is_dir($todir)) {
        dir_create($todir);
    }
    $list = glob($fromdir . '*');
    foreach ($list as $v) {
        $path = $todir . basename($v);
        if (is_file($path) && !is_writable($path)) {
            if (DT_CHMOD) {
                @chmod($path, DT_CHMOD);
            }
        }
        if (is_dir($v)) {
            dir_copy($v, $path);
        } else {
            @copy($v, $path);
            if (DT_CHMOD) {
                @chmod($path, DT_CHMOD);
            }
        }
    }
    return true;
}
开发者ID:hiproz,项目名称:zhaotaoci.cc,代码行数:29,代码来源:file.func.php

示例10: dir_copy

function dir_copy($from_path, $to_path)
{
    // posted by dallask at sbcglobal dot net 21-Oct-2002 10:14
    // on PHP.net
    // Recursively copies a directory.
    $this_path = getcwd();
    if (!is_dir($to_path)) {
        mkdir($to_path, 0775);
    }
    if (is_dir($from_path)) {
        chdir($from_path);
        $handle = opendir('.');
        while (($file = readdir($handle)) !== false) {
            if ($file != "." && $file != "..") {
                if (is_dir($file)) {
                    chdir($this_path);
                    dir_copy($from_path . $file . "/", $to_path . $file . "/");
                    chdir($this_path);
                    chdir($from_path);
                }
                if (is_file($file)) {
                    chdir($this_path);
                    copy($from_path . $file, $to_path . $file);
                    chdir($from_path);
                }
            }
        }
        closedir($handle);
    }
    chdir($this_path);
}
开发者ID:adamfranco,项目名称:segue-1.x,代码行数:31,代码来源:functions.inc.php

示例11: dir_move

/**
 * ディレクトリごと移動(コピーして削除)する
 */
function dir_move($dir_name, $new_dir, $permission = 0755)
{
    if (TRUE === dir_copy($dir_name, $new_dir, $permission)) {
        // コピーに成功してから削除する
        // XXX 冗長だが敢えて
        return dir_delete($dir_name);
        return TRUE;
    }
    return FALSE;
}
开发者ID:s-nakazawa,项目名称:UNICORN,代码行数:13,代码来源:UNICORN.php

示例12: create

 public function create()
 {
     chdir(ROOT_DIR);
     dir_copy(ROOT_DIR . '/repository', INSTALL_PATH);
 }
开发者ID:curseoff,项目名称:pgit,代码行数:5,代码来源:init.php

示例13: dir_copy

/**
 * 将一个文件夹内容,复制或移动到另一个文件夹
 *
 * @param string $source 源文件夹名
 * @param string $target 目标文件夹
 * @param boolean $deleteSource 是否删除源文件夹(是则相当于移动,否则相当于复制)
 *
 * @return boolean
 */
function dir_copy($source, $target, $deleteSource = false)
{
    $source = dir_format($source);
    $target = dir_format($target);
    if ($source == $target) {
        return true;
    }
    if (!is_dir($source)) {
        return false;
    }
    dir_check($target);
    $handle = opendir($source);
    if (!$handle) {
        return false;
    }
    $sourcePath = $targetPath = '';
    while (($item = readdir($handle)) !== false) {
        if ($item == '.' || $item == '..') {
            continue;
        }
        $sourcePath = $source . '/' . $item;
        $targetPath = $target . '/' . $item;
        if (is_dir($sourcePath)) {
            dir_copy($sourcePath, $targetPath, $deleteSource);
            if ($deleteSource) {
                rmdir($sourcePath);
            }
        } else {
            copy($sourcePath, $targetPath);
            if ($deleteSource) {
                unlink($sourcePath);
            }
        }
    }
    closedir($handle);
    return true;
}
开发者ID:chaoyanjie,项目名称:MonkeyPHP,代码行数:46,代码来源:function.php

示例14: dir_move

/**
 * ディレクトリごと移動(コピーして削除)する
 */
function dir_move($dir_name, $new_dir)
{
    if (true === dir_copy($dir_name, $new_dir)) {
        // コピーに成功してから削除する
        // XXX 冗長だが敢えて
        //return dir_delete($dir_name);
        return true;
    }
    return false;
}
开发者ID:s-nakazawa,项目名称:UNICORN,代码行数:13,代码来源:installer.php

示例15: dir_copy

function dir_copy($source, $destination, $f = 0, $d = 0)
{
    //$f-是否复制文件夹下文件,$d是否复制搜索下级文件夹
    if (!is_dir($source)) {
        return false;
    }
    mmkdir($destination, 0);
    if ($f || $d) {
        $handle = dir($source);
        while ($entry = $handle->read()) {
            if ($entry != "." && $entry != "..") {
                if (is_dir($source . "/" . $entry)) {
                    $d && dir_copy($source . "/" . $entry, $destination . "/" . $entry, $f, $d);
                } else {
                    $f && copy($source . "/" . $entry, $destination . "/" . $entry);
                }
            }
        }
    }
    return true;
}
开发者ID:polarlight1989,项目名称:08cms,代码行数:21,代码来源:subsetup.fun.php


注:本文中的dir_copy函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。