The following code is part of a PHP web-service I\'ve written. It takes some uploaded Base64 data, decodes it, and appends it to a file. This all works fine.
The p
On Linux based systems, data fetched by filesize() is "statcached".
filesize()
Try calling clearstatcache(); before the filesize call.