Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,924 questions

51,857 answers

573 users

How to divide a string into N equal parts with PHP

1 Answer

0 votes
function DivideStringIntoEqualParts($str, $parts) {
    $length = strlen($str);
    
    if ($length % $parts != 0) {
        echo "No equal parts";
        return NULL;
    }
    
    $j = 0;
    $part_size = (int)($length / $parts);
    $parts_arr = array_fill(0, $parts, NULL);
    
    for ($i = 0; $i < $length; $i = $i + $part_size) {
        $parts_arr[$j] = substr($str, $i, $i + $part_size - $i);
        $j++;
    }
    
    return $parts_arr;
}

$str = "php java c++ c python c#";
$parts = 4;

$parts_arr = DivideStringIntoEqualParts($str, $parts);

for ($i = 0; $i < count($parts_arr); $i++) {
    echo $parts_arr[$i],"\n";
}




/*
run:

php ja
va c++
 c pyt
hon c#

*/

 



answered Oct 5, 2022 by avibootz

Related questions

2 answers 119 views
2 answers 140 views
2 answers 151 views
1 answer 115 views
1 answer 122 views
1 answer 112 views
1 answer 116 views
...