|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-23 07:40 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 11:00:02 2025 UTC |
Running PHP 4.07dev from phpWin on SourceForge...and running IIS 5.0 and running PHP in CGI form...have not tested the memory_limit directive on earlier versions of php.. using following script, the 30 timelimit was hit, and as it should, but php.exe was able to chew up over 100mbs and it would've gotten more if it wasnt' for the time limit which works ----------------- <? $i = 1; while(1) { $i++; $toast[$i] = "asdfasfd"; } ?>