Modifiers
Modifiers change how regular expressions behave.
Common modifiers include:
icase insensitivemmultilinesdot matches newline
Example
Section titled “Example”preg_match("/hello/i", "HELLO");Modifiers change how regular expressions behave.
Common modifiers include:
i case insensitivem multilines dot matches newlinepreg_match("/hello/i", "HELLO");