|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-05-01 06:23 UTC] xyztheweb at hotmail dot com
If I perform an
explode(",",$str);
on
$str = "hi there this is a test";
Php gets "stuck" and can eventually bing the memroy of the server down.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
I can't reproduce this with latest CVS on Linux using the following test script: <?php $str = "this test string doesnt include the separator char"; $arr = explode(";", $str); ?> --Jani