|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-09-30 05:40 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 08:00:01 2025 UTC |
Description: ------------ The warning message generated by chunk_split() when chunk_len is given as negative value contains an extra dot (.) char. applicable to php5 only. Reproduce code: --------------- <?php var_dump( chunk_split("string", -1, ", ") ); ?> Expected result: ---------------- Warning: chunk_split(): Chunk length should be greater than zero in %s on line %d bool(false) Actual result: -------------- Warning: chunk_split(): Chunk length should be greater than zero. in %s on line %d bool(false)