Lines Matching refs:copy
2 Test copy() function: usage variations - destination file names(white spaces)
10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
15 /* Test copy() function: In creation of destination file names containing white spaces
19 echo "*** Test copy() function: destination file names containing whitespaces ***\n";
30 "copy variation3.tmp", //file name containing blank space
32 "copy\tvariation3.tmp",
36 echo "Size of the source file before copy operation => ";
40 echo "\n-- Now applying copy() on source file to create copies --";
48 var_dump( copy($src_file_name, $dest_file_name) );
79 *** Test copy() function: destination file names containing whitespaces ***
80 Size of the source file before copy operation => int(1500)
82 -- Now applying copy() on source file to create copies --
86 Destination file name => copy variation3.tmp
100 Destination file name => copy variation3.tmp