pcre

The PCRE (Perl Compatible Regular Expressions) extension in PHP provides support for regular expression pattern matching

The PCRE (Perl Compatible Regular Expressions) extension in PHP provides support for regular expression pattern matching, enabling complex string manipulations. This extension is included by default and is generally enabled. If not, uncomment the line `;extension=pcre` in the `php.ini` file and restart your web server.

Already included with PHP.