reverse string php

前端 未结 4 2042
面向向阳花
面向向阳花 2021-01-06 16:06

What would be the best way to reverse the order of a string so for instance,

\'Hello everybody in stackoverflow\'

becomes

\         


        
4条回答
  •  星月不相逢
    2021-01-06 16:40

    The above answer, strrev reverses the entire string. To reverse the order of the words:

    $str = 'Hello everybody in stackoverflow';
    $tmp = explode(' ', $str);
    $tmp = array_reverse($tmp);
    $reversed_str = join(' ', $tmp);
    

提交回复
热议问题