yes i always had that under 4.06 under windows > -----Ursprüngliche Nachricht----- > Von: Bug Database [mailto:[EMAIL PROTECTED]] > Gesendet: Freitag, 5. Oktober 2001 18:38 > An: [EMAIL PROTECTED] > Betreff: Bug #13089 Updated: Simple Char Swapping in String crashes > Webserver > > > ID: 13089 > Updated by: rasmus > Reported By: [EMAIL PROTECTED] > Old Status: Open > Status: Feedback > Bug Type: Reproducible crash > Operating System: Suse Linux 7.1 > PHP Version: 4.0.4pl1 > New Comment: > > Unable to reproduce this. Could you check to see if this is > still a problem in recent versions? > > Previous Comments: > ------------------------------------------------------------------------ > > [2001-09-01 09:50:53] [EMAIL PROTECTED] > > Hey there i just managed something that i never accomplished > beforei kill a httpd process from PHP, i run the following code > <? $slen=strlen($enc); for ($i=0;$i<$slen;$i=$i+2) { > $swap=$enc[$i]; $enc[$i]=$enc[$i+1]; $enc[$i+1]=$swap; } > ?> $enc is a string and has an even length This silly lines of > code make the apache child process crash, if i change it to <? > $slen=strlen($enc); for ($i=0;$i<$slen;$i=$i+2) { > $swap=$enc[$i]; $swap2=$enc[$i+1]; $enc[$i]=$swap2; > $enc[$i+1]=$swap; } ?> it works well. what the hell is > happening here? i run php 4.04pl1 as apache module under linux. > > ------------------------------------------------------------------------ > > > > ATTENTION! Do NOT reply to this email! > To reply, use the web interface found at http://bugs.php.net/?id=13089&edit=2
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]