<?php $str = "Hello, How Are You."; echo preg_replace_callback("/([a-z]+)/i",function($m){ return implode(array_map('strrev',str_split($m[0],2))); },$str);
You have javascript disabled. You will not be able to edit any code.