国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

php字符串按照單詞進(jìn)行反轉(zhuǎn)的方法

原創(chuàng) 2017-02-07 10:57:09 418
摘要:本文實(shí)例講述了php字符串按照單詞進(jìn)行反轉(zhuǎn)的方法。分享給大家供大家參考。具體分析如下:下面的php代碼可以將字符串按照單詞進(jìn)行反轉(zhuǎn)輸出,實(shí)際上市現(xiàn)將字符串按照空格分隔到數(shù)組,然后對數(shù)組進(jìn)行反轉(zhuǎn)輸出<?php $s = "Reversing a string by word"; // break 

本文實(shí)例講述了php字符串按照單詞進(jìn)行反轉(zhuǎn)的方法。分享給大家供大家參考。具體分析如下:

下面的php代碼可以將字符串按照單詞進(jìn)行反轉(zhuǎn)輸出,實(shí)際上市現(xiàn)將字符串按照空格分隔到數(shù)組,然后對數(shù)組進(jìn)行反轉(zhuǎn)輸出

<?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;
?>

輸出結(jié)果如下:
word by string a Reversing

更多關(guān)于php字符串按照單詞進(jìn)行反轉(zhuǎn)的方法請關(guān)注PHP中文網(wǎng)(www.miracleart.cn)其他文章!

發(fā)佈手記

熱門詞條