|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-09-30 08:03 UTC] sniper@php.net
[2003-10-04 01:25 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 UTC |
Description: ------------ I have a application with 15 files and 6000 lines of code instaled on server with PHP 4.2.3 This runs O.K. I just installed PHP 4.3.3 in my PC for I+D. Now I have several errors in many lines of code. The error says "Php provoc? un error en PHP4TS.DLL. Php se cerrar?" I press the option "Debug" and then Microsoft Visual C++ give the message "Unhandled exception in php.exe (PHP4TS.DLL): 0xC00000FD: Stack Overflow". This ocurrs some times when I use the function isset() but I can not reproduce the fail: when I try to make a short file with the code ??this run!! This error ocurrs too when I use the function eregi() in eregi("^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$", $Mail); when $Mail value is any value with two points "..", but when I try to make a short file (see below) this run OK. Please Can any one help me? Thanks Reproduce code: --------------- <?php if (isset($Mail)) { if (eregi("^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$", $Mail)) $Msg = "El mail <b>'$Mail'</b> es correcto<hr>"; else $Msg = "<b>ERROR:</b> El mail <b>'$Mail'</b> es incorrecto<hr>"; } echo " <html><head></head><body> $Msg <form method=post> Mail <input type=text name=Mail> <input type=submit value=Send> </form></body></head>"; ?>