This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
luowei_exam/program_85.php
2025-01-09 11:57:41 +08:00

6 lines
162 B
PHP

<?php
$str = $_GET['string'];
function mySwap($string){
return $string[strlen($string)-1].substr($string,1,strlen($string)-2).$string[0];
}
echo mySwap($str);