Phalanger
Phalanger copied to clipboard
if php file changed, but it's datetime older, then phalanger will be load old assembly
Sounds like expected behaviour to me, not an issue, since checking by datetime is reasonable.
In phalanger behaviour must be same with php :) Php using changed file
Phalanger compares LastWriteTime of script files and current request time. If system time changes, it may cause issues.
After copying file a to file b, a.LastWriteTime==b.LastWriteTime && b.CreationTime==DateTime.Now. May be you should use max time?
Thats it,thanks. Will be fixed.
and with dynamic wrappers too. just encountered with this bug
I see.we should use ModifiedTime instead (max(CreationTime, LastWriteTime))