|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2016-02-19 12:39 UTC] vladimir at volomp dot com
Description:
------------
Fails to copy a.txt to b.txt if b.txt is missing.
If we just touch b.txt, copy will work.
There is possibly relevant code in ext/standard/file.c in function php_copy_file_ctx() where dest is checked the same way source is (suspected copy&paste).
switch (php_stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET | PHP_STREAM_URL_STAT_NOCACHE, &dest_s, ctx)) {
case -1:
/* non-statable stream */
goto safe_to_copy;
break;
case 0:
break;
default: /* failed to stat file, does not exist? */
return ret;
}
So it is unclear if PHP_STREAM_URL_STAT_QUIET has any influence on return code - but I guess NO, so then this block of code is incorrect and should have default goto safe_to_copy.
This code is more-less same for php 5.6 and 7, however 5.2.17 which we still use do not have this bug as check is done differently:
if (php_stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET, &dest_s, NULL) != 0) {
goto safe_to_copy;
}
Test script:
---------------
copy( "a.txt", "b.txt" );
Patchesphp_copy_file_ctx-destination-check-fix (last revision 2016-02-19 12:40 UTC by vladimir at volomp dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 07:00:01 2025 UTC |
Please can you provide some context of how you are encountering a problem. i.e. provide a reproduce scripts. The code below works for me: <?php file_put_contents("a.txt", "These are some words"); copy("a.txt", "b.txt"); var_dump(file_exists("b.txt")); //output is bool(true) without b.txt existing first.Your script is just fine for testing. I get bool(false) consistently. php --version PHP 5.5.16 (cli) (built: Aug 31 2014 16:22:37) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies <?php file_put_contents("a.txt", "These are some words"); copy("a.txt", "b.txt"); var_dump(file_exists("b.txt")); I will git clone and check completely stock .32