Skip to content

Instantly share code, notes, and snippets.

@hiyorineko
Created November 30, 2019 14:15
Show Gist options
  • Save hiyorineko/07935db960b9dc42feea7689fff36ffa to your computer and use it in GitHub Desktop.
Save hiyorineko/07935db960b9dc42feea7689fff36ffa to your computer and use it in GitHub Desktop.
function accum($s) {
$result = array();
for ($i = 0; $i < strlen($s); $i++) {
$str = "";
for ($j = 0; $j <= $i; $j++) {
$str = $str . $s[$i];
}
$result[] = ucfirst(strtolower($str));
}
return implode("-", $result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment