|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-01-07 12:07 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 08:00:01 2025 UTC |
I'm using PHP 4.1.0 on Windows 98 with no DLL-Extensions loaded. Accidently I wrote a class method that called itself instead of an other method: function getText($id) { ... return $text; // A valid string } function getHTML($id) { return htmlentities($this->getHTML($id)); // Here is my misstake: Should be getText() instead getHTML() } This code causes my Apache/1.3.20 (Win32) to crash. Okay, it's my misstake as programmer but should a wrong code be able to crash the server??? Thank you guys, you do a great job! Ferdinand Beyer <fbeyer@clickhand.de>