|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-24 13:39 UTC] shane
[2020-02-20 09:17 UTC] nikic@php.net
[2021-02-24 21:09 UTC] langemeijer@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 02:00:01 2025 UTC |
CODE SNIPPET: if (filesize($thisgif) > 2) { $typelist[$row['type']] = "<img src=\"$thisgif\"> $thisname<br>"; } else { $typelist[$row['type']] = "<b>($thistype)</b> $thisname<br>"; } DETAILED DESCRIPTION: I was using filesize() as a file existence check for a .gif file. Upon reaching the if... line, PHP hung in memory & required an NT server restart (the NT Process Monitor refused to kill it). I haven't had a chance to check any of the other filesystem routines under WinNT...might this be an artifact of the Unix->Windopey NT port?