程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 字母順序顛倒而單詞順序不變的php代碼

字母順序顛倒而單詞順序不變的php代碼

編輯:關於PHP編程

php面試題說明 :

例如:my name is fanglor =》 ym eman si orlgnaf

php面試題的答案:
復制代碼 代碼如下:
function restr ($str)
{
$str1 = explode (' ',$str);
$str2 = '';
$temp = '';
for ($i=0;$i<count ($str1);$i++)
{
$str2 .= $temp.strrev ($str1[$i]);
$temp = ' ';
}
return $str2;

}

測試代碼:
復制代碼 代碼如下:
$str = "my name is fanglor ";
echo restr ($str);

打印結果:
ym eman si rolgnaf

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved