I have seen some examples about regular expressions with "@" on PHP, something like this:
preg_match ("@[a-zA-Z0-9]@i", $value, $occurrences);
I could see that this counts the number of matches of regular expression which were found in the $value
variable, but I would like to be sure if the "@" is used for this specific case or what's the main function of "@" in regular expressions?.
Can you help me please?