(PHP 4, PHP 5, PHP 7)
copy — �����ļ�
$source
, string $dest
[, resource $context
] ) : bool
���ļ��� source
������ dest
��
���Ҫ�ƶ��ļ��Ļ�����ʹ�� rename() ������
source
Դ�ļ�·����
dest
Ŀ��·������� dest
��һ�� URL���������װЭ�鲻֧�ָ������е��ļ�ʱ����������ʧ�ܡ�
���Ŀ���ļ��Ѵ��ڣ����ᱻ���ǡ�
context
A valid context resource created with stream_context_create().
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
�汾 | ˵�� |
---|---|
5.3.0 | �����˶� context ��֧�֡� |
4.3.0 |
���������"fopen wrappers"�Ļ���source ��
dest �������� URL������ϸ�ڼ� fopen()��
|
Example #1 copy() ����
<?php
$file = 'example.txt';
$newfile = 'example.txt.bak';
if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
}
?>