复制文件而不创建目标文件

时间:2016-01-27 07:25:20

标签: php

我想在不知道目标文件是否存在的情况下将文件从一个地方复制到另一个地方。

我正在使用:

netstat -aon | more

但是它说:

<?php
    $source = 'user/temp/details.txt'; //this file exists.
    $target = 'user/'.$user_name.'/details.txt'; //this file don't exists.
    copy($source, $target);
?>

0 个答案:

没有答案