|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-10-20 06:02 UTC] sander@php.net
[2001-10-20 06:27 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 19:00:02 2025 UTC |
Hi, in the current cvs version (407|408) the following code have another result as in PHP <=406 <?php echo chunk_split(str_repeat('x',1024),100); ?> chunk_split dont split the strings if a split size is given. Without the splitsize, ... <?php echo chunk_split(str_repeat('x',1024)); ?> ... chunk_split works correct. Regards, -- Steve