Lines Matching refs:copy
2 Test copy() function: usage variations - non existing src/dest
5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
10 /* Test copy(): Trying to create a copy of non-existing source in an existing destination
15 echo "*** Test copy() function: Trying to create a copy of non-existing source in existing destinat…
21 var_dump( copy($file_path."/nosuchfile.tmp", $file_path."/copy_nosuchfile.tmp") ); //With non-exis…
24 echo "\n*** Test copy() function: Trying to create copy of an existing source in non-existing desti…
25 var_dump( copy($file, $file_path."/nodir/copy_nosuchfile.tmp") ); //With non-existing dir path
38 *** Test copy() function: Trying to create a copy of non-existing source in existing destination ***
39 Warning: copy(%s): %s
43 *** Test copy() function: Trying to create copy of an existing source in non-existing destination *…
44 Warning: copy(%s): %s