<?php
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
* @param s string字符串
* @param n int整型
* @return string字符串
*/
function trans( $s , $n )
{
// write code here
$result = [];
$exploded = explode(' ', $s);
for ($i = count($exploded) - 1; $i >= 0; $i--) {
$tmp = '';
for ($j = 0; $j < strlen($exploded[$i]); $j++) {
$tmp .= transChar($exploded[$i][$j]);
}
$result[] = $tmp;
}
return implode(' ', $result);
}
function transChar($char)
{
if ($char >= 'A' && $char <= 'Z') {
return strtolower($char);
}
if ($char >= 'a' && $char <= 'z') {
return strtoupper($char);
}
return $char;
}
04-16
1349
05-16