PHP foreach loop backwards

PHP
foreach(array_reverse($array) as $var) {
	echo $var // Will show in reversed order
}
Source

Also in PHP: