我想要反向每個單詞的字符串在這裏是我的邏輯可以任何身體檢查,並使其正確的地方,我得到錯誤必須感激我知道我錯過了一些事情一點點。如果使這個代碼和邏輯寫入,必須感激。獲取反向每個單詞的錯誤在php
代碼: -
<?php
$a = "i am getting late";
$count = 0;
$Reversestring = "";
while(isset($a[$count]))
{
if($a[$count] != '')
{
echo $a[$count];
$catchWord .= $a[$count];
$count++;
}else{
die($catchWord);
$Reversestring .= reverseWord($catchWord);
}
}
echo $Reversestring;
function reverseWord($word)
{
$revWord;
for($i = str_word_count($word) ; $i > 0; $i--)
{
$revWord = $word[$i];
}
return $revWord;
?>
您的意思是使用'='代替'reverseWord'函數中'='的含義? –
這可能是一個可能的重複這個問題.http://stackoverflow.com/questions/2977556/how-to-reverse-words-in-a-string – Mubo