1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- declare(strict_types=1);
- function reverseString(string $text): string
- {
- $max = mb_strlen($text);
- $res = "";
- for ($i = 0; $i < $max; $i++) {
- $res .= mb_substr($text, $max-$i-1, 1);
- }
- return $res;
- }
|