|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-04-21 14:15 UTC] shire@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 22:00:02 2025 UTC |
Description: ------------ Moving a file into other directory but with same name and same contents the file runs as if it was in its old place. apc.stat is ON ! Reproduce code: --------------- dir/a.php: ------------- $foo = 'bar'; ------------- dir/b.php: ------------- require_once('a.php'); print $foo; // output: bar ------------- now move dir/b.php to otherdir/b.php requesting otherdir/b.php still outputs "bar" After changing the contents of b.php in any way, the problem is solved.