mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.4'
* PHP-8.4: Fix potential conflict of copy_variation5-win32.phpt
This commit is contained in:
commit
5683e8b46b
1 changed files with 8 additions and 8 deletions
|
@ -22,9 +22,9 @@ fclose($file_handle);
|
||||||
$dest_files = array(
|
$dest_files = array(
|
||||||
|
|
||||||
/* Checking case sensitiveness */
|
/* Checking case sensitiveness */
|
||||||
"COPY.tmp",
|
"COPY5.tmp",
|
||||||
"COPY.TMP",
|
"COPY5.TMP",
|
||||||
"CopY.TMP"
|
"CopY5.TMP"
|
||||||
);
|
);
|
||||||
|
|
||||||
echo "Size of the source file before copy operation => ";
|
echo "Size of the source file before copy operation => ";
|
||||||
|
@ -80,25 +80,25 @@ Size of the source file before copy operation => int(1500)
|
||||||
-- Iteration 1 --
|
-- Iteration 1 --
|
||||||
Copy operation => bool(true)
|
Copy operation => bool(true)
|
||||||
Existence of destination file => bool(true)
|
Existence of destination file => bool(true)
|
||||||
Destination file name => %s/COPY.tmp
|
Destination file name => %s/COPY5.tmp
|
||||||
Size of source file => int(1500)
|
Size of source file => int(1500)
|
||||||
Size of destination file => int(1500)
|
Size of destination file => int(1500)
|
||||||
|
|
||||||
-- Iteration 2 --
|
-- Iteration 2 --
|
||||||
Copy operation => bool(true)
|
Copy operation => bool(true)
|
||||||
Existence of destination file => bool(true)
|
Existence of destination file => bool(true)
|
||||||
Destination file name => %s/COPY.TMP
|
Destination file name => %s/COPY5.TMP
|
||||||
Size of source file => int(1500)
|
Size of source file => int(1500)
|
||||||
Size of destination file => int(1500)
|
Size of destination file => int(1500)
|
||||||
|
|
||||||
-- Iteration 3 --
|
-- Iteration 3 --
|
||||||
Copy operation => bool(true)
|
Copy operation => bool(true)
|
||||||
Existence of destination file => bool(true)
|
Existence of destination file => bool(true)
|
||||||
Destination file name => %s/CopY.TMP
|
Destination file name => %s/CopY5.TMP
|
||||||
Size of source file => int(1500)
|
Size of source file => int(1500)
|
||||||
Size of destination file => int(1500)
|
Size of destination file => int(1500)
|
||||||
|
|
||||||
Warning: unlink(%s/COPY.TMP): No such file or directory in %s on line %d
|
Warning: unlink(%s/COPY5.TMP): No such file or directory in %s on line %d
|
||||||
|
|
||||||
Warning: unlink(%s/CopY.TMP): No such file or directory in %s on line %d
|
Warning: unlink(%s/CopY5.TMP): No such file or directory in %s on line %d
|
||||||
*** Done ***
|
*** Done ***
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue