i've a problem with "/anystring" and ltrim function in php.
here's my code:
$s = "/ciao/come/va";
$s1 = ltrim($s,'/ciao');
echo $s1;
i want $s1
return "/come/va"
but the code always returns "me/va"
I've already test other solution but i need to use ltrim.