<?php $convert = array('A' => 'B', 'B' => 'C'); echo str_replace(array_keys($convert), array_values($convert), 'A'); echo "\n"; echo strtr('A', $convert);
You have javascript disabled. You will not be able to edit any code.