. * * To disable strict typing, comment out the directive below. */ declare(strict_types=1); function reverseString(string $text): string { $result = ''; for ($i = strlen($text) - 1; $i >= 0; --$i) { $result .= $text[$i]; } return $result; }