- array_reverse: documentation ( source)
- implode: documentation ( source)
- explode: documentation ( source)
<?php
$str = 'Hello World';
$strArray=explode(" ", $str);
$strArray=array_reverse($strArray);
$str=implode($strArray, " ");
echo $str;