Skip to content

Instantly share code, notes, and snippets.

@sota1235
Last active August 7, 2017 03:04
Show Gist options
  • Save sota1235/1a10352c9fbb2bb70430242ae72e90df to your computer and use it in GitHub Desktop.
Save sota1235/1a10352c9fbb2bb70430242ae72e90df to your computer and use it in GitHub Desktop.
<?php
$pre = 'pap';
$end = 'x';
$repeat = 'i';
$count = 20;
$caces = [];
for ($i = 2; $i <= $count; $i++) {
$cases[] = $pre . str_repeat($repeat, $i) . $end;
}
echo implode(',', $cases);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment