In PHP 7.x, ereg functions are no longer supported. Based on my search on internet, ereg functions use a very limited regex flavor called POSIX ERE.
Below example shows the alternative method in preg functions
| ereg functions | recommended alternative functions | ||||
|---|---|---|---|---|---|
eregi( string $pattern , string $string ) : int
| preg_match( string $pattern , string $subject ) : int
| ||||
eregi( string $pattern , string $string ) : int
| preg_match( string $pattern , string $subject ) : int
| ||||
eregi( string $pattern , string $string , array &$regs ) : int
Result
| preg_match( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] ) : int
Result
|
Reference URLs