Files
TheAlgorithms-PHP/String/ReverseString.php
2020-08-05 21:23:53 +05:30

17 lines
349 B
PHP

<?php
function reverse_string(string $string)
{
$string = trim($string); // Removing leading and trailing spaces
$characters = str_split($string);
$reversedCharacters = [];
for ($i = (count($characters) - 1); $i >= 0; $i--) {
$reversedCharacters[] = $characters[$i];
}
return implode('', $reversedCharacters);
}