PHP - regex various Piotr Synowiec ~1 min read November 4, 2022 Categories DEV Tags phpregex Replacement of eregi // from eregi('patern', $string, $matches); // to preg_match('/pattern/i', $string); // preg_match("%s{$regex}%i", $string); Replacement of split // from split(":", $records); // to preg_split("/:/", $records) Share Tweet LinkedIn Reddit Previous Git - various notes Next API Platform custom controller