first commit

This commit is contained in:
2025-01-09 11:57:41 +08:00
commit 700113c47b
47 changed files with 2050 additions and 0 deletions

6
program_85.php Normal file
View File

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