|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-07-07 06:54 UTC] dmitry@php.net
[2017-07-07 06:54 UTC] dmitry@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ Large offsets cause preg_match() to return 0 instead of false Test script: --------------- <?php var_dump(preg_match('/\S+/', 'foo bar', $matches, 0, 99999)); Expected result: ---------------- bool(false) Actual result: -------------- int(0)