Skip to content

Instantly share code, notes, and snippets.

@saharabear
Created February 8, 2013 17:52
Show Gist options
  • Select an option

  • Save saharabear/4740703 to your computer and use it in GitHub Desktop.

Select an option

Save saharabear/4740703 to your computer and use it in GitHub Desktop.
<?php
$subject = "abcdef";
$pattern = '/^def/';
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment