Replace deprecated ereg
regular expression functions with preg
.
Risky if the ereg
function is overridden.
--- Original
+++ New
-<?php $x = ereg('[A-Z]');
+<?php $x = preg_match('/[A-Z]/D');
The rule is part of the following rule sets:
- Fixer class: PhpCsFixer\Fixer\Alias\EregToPregFixer
- Test class: PhpCsFixer\Tests\Fixer\Alias\EregToPregFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.