eldan88 Posted May 11, 2014 Share Posted May 11, 2014 Hey Guys. I am new to using preg_match and was wondering how I can add a default offset to the matches result. I was doing some reading on the PHP documenation but couldn't make sense of the following description: int preg_match_all ( string $pattern , string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] ) I was wondering how can I add a defualt offset of 0 the following preg_match_all function below. preg_match_all('(\b\w{4}\b)', 'drink beer, it\'s very nice!', $matches, $offset = 0 ); echo $matches [0][1]; Thanks for your help in advance Quote Link to comment Share on other sites More sharing options...
Ch0cu3r Posted May 12, 2014 Share Posted May 12, 2014 I was wondering how can I add a defualt offset of 0 You dont that is the default... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.