|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-28 07:06 UTC] wez@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 08 23:00:01 2026 UTC |
If the text for preg_match_all is bigger than some value, many regexp constructions causes php to terminate. This code crashes php (on win32 only): <? $thi = str_repeat("aaaaaaa a aa aa aa\n", 1000); preg_match_all("/(.|\n)*/",$thi,$vars); ?>