I am trying to basically explode a string with both a space and a forward slash. This is what I have:
$array = preg_split("/[\s,\/]+/", $string)
But I think I am doing something wrong. I have searched online but I can't really grasp how you enclose or define the characters. Is space \s? I thought slash forward was / but I am not sure anymore.
Thank you,