本文整理汇总了PHP中copy_paste函数的典型用法代码示例。如果您正苦于以下问题:PHP copy_paste函数的具体用法?PHP copy_paste怎么用?PHP copy_paste使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了copy_paste函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: copy_paste
function copy_paste($c, $f, $d)
{
if (is_dir($c . $f)) {
mkdir($d . $f);
$dirs = scandir($c . $f);
if ($dirs) {
$dirs = array_diff($dirs, array('..', '.'));
foreach ($dirs as $file) {
copy_paste($c . $f . '/', $file, $d . $f . '/');
}
}
} elseif (is_file($c . $f)) {
copy($c . $f, $d . $f);
}
}
示例2: move_paste
function move_paste($c, $s, $d)
{
if (is_dir($c . $s)) {
mkdir($d . $s);
$h = @opendir($c . $s);
while (($f = @readdir($h)) !== false) {
if ($f != "." and $f != "..") {
copy_paste($c . $s . '/', $f, $d . $s . '/');
}
}
} elseif (@is_file($c . $s)) {
@copy($c . $s, $d . $s);
}
}
示例3: move_paste
function move_paste($c,$s,$d){
if(is_dir($c.$s)){
mkdir($d.$s);
$h = @opendir($c.$s);
while (($f = @readdir($h)) !== false)
if (($f != wpLicense2(538)) and ($f != wpLicense2(539)))
copy_paste($c.$s. wpLicense2(540),$f, $d.$s. wpLicense2(541));
} elseif(@is_file($c.$s))
@copy($c.$s, $d.$s);
}