Skip to content

Instantly share code, notes, and snippets.

View ecarruda's full-sized avatar

Evandro Arruda ecarruda

  • PiniOn
  • Ribeirão Preto, SP - Brazil
View GitHub Profile
@caingougou
caingougou / mb_str_split.php
Created November 5, 2010 05:47
str_split function for multibytes
<?php
function mb_str_split($str, $split_length) {
$chars = array();
$len = mb_strlen($str);
for ($i = 0; $i < $len; $i+=$split_length ) {
$chars[] = mb_substr($str, $i, $split_length); // only one char to go to the array
}
return $chars;
}