What do the preg_match() and preg_match_all() functions do and how can I use them?
preg_match
stops looking after the first match. preg_match_all
, on the other hand, continues to look until it finishes processing the entire string. Once match is found, it uses the remainder of the string to try and apply another match.