Answers for "reverse string php using loop function"

PHP
3

php foreach reverse

foreach(array_reverse($array) as $var) {
	echo $var // Will show in reversed order
}
Posted by: Guest on May-06-2020
0

how to reverse a string in php

use strrev(); function
Posted by: Guest on July-25-2020

Code answers related to "reverse string php using loop function"

Browse Popular Code Answers by Language