I have this code at the moment in php the GET Receives words from a variable and the vast majority starts with a "@" then I add a "substr" to omit the first character which is "@" but there is a time when I get words without the @, is there some way to omit only the @? I would very much appreciate the help thank you very much!!
$soe = $_GET["option"];
$so = substr($soe, 1);