<?php $hex = "abba test baab"; $hex = array_map(function ($x) { return ($x === 'a') ? 'b' : (($x === 'b') ? 'a' : $x); }, str_split($hex)); echo implode('', $hex);
You have javascript disabled. You will not be able to edit any code.