php字串如何依照單字反轉?本文主要介紹了php字串依照單字反轉的方法,涉及php中array_reverse、explode及implode等函數的使用技巧,希望對大家來哦接字串反轉有所幫助。
具體分析如下:
下面的php程式碼可以將字串依照單字反轉輸出,實際上市現將字串依照空格分隔到數組,然後對陣列進行反轉輸出
<?php $s = "Reversing a string by word"; // break the string up into words $words = explode(' ',$s); // reverse the array of words $words = array_reverse($words); // rebuild the string $s = implode(' ',$words); print $s; ?>
輸出結果如下:
word by string a Reversing
##相關推薦:
以上是php字串中反轉單字的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!