PHP copy() 函數(shù)
PHP copy() 函數(shù)

定義和用法
copy() 函數(shù)復(fù)制文件。
該函數(shù)如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
copy(file,to_file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要復(fù)制的文件。 |
to_file | 必需。規(guī)定復(fù)制文件的目的地。 |
提示和注釋
注釋:如果目標(biāo)文件已存在,將會被覆蓋。
實(shí)例
<?php
echo copy("source.txt","target.txt");
?>
echo copy("source.txt","target.txt");
?>
上面的代碼將輸出:
1

相關(guān)文章
- PHP 教程
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 數(shù)組
- PHP 魔術(shù)常量
- PHP 面向?qū)ο?/a>
- PHP Cookie
- PHP array_count_values() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP count() 函數(shù)
- PHP krsort() 函數(shù)
- PHP next() 函數(shù)
- PHP rsort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP Filter 函數(shù)