If I understand you correctly, a very large value is what you're looking for- this is a Unix Time Stamp.
Did you try something like this?
date ("F d Y H:i:s.", filemtime($filename))
filemtime
returns the number of seconds that have passed since January 1, 1970, which should be a very large value indeed; it's up to you to convert those seconds into something human-readable, using something like the above example.
If, on the other hand, you're aware of this and you believe your large value is still wrong, it may be helpful to post an example of said value, along with the date you're expecting for it.