Is there a way to limit exactly what ltrim removes in PHP.
I had a the following outcome:
$str = \"axxMyString\"; $newStr = ltrim($str, \"ax\"); // resu
You could use a regexp too:
$string = preg_replace('#^ax#', '', $string);