|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-06-30 08:22 UTC] tony2001@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 06:00:01 2025 UTC | 
Description: ------------ This code can bring a server down. $arr_test = array(); for ($i = 500; $i >= 100; $i-25) { array_push($arr_test, $i); } Obviously $i-25 should be $i-=25, but in hurry I forgot to put the = sign and the server went down. Actual result: -------------- The server went down in Windows and Linux environment.