<?php $str = "apple,orange,tomato"; $arr = explode(",", $str); $arr =array_reverse($arr); echo implode(",", $arr);
You have javascript disabled. You will not be able to edit any code.