Skip to content

Instantly share code, notes, and snippets.

@adamramadhan
Created February 20, 2010 20:31
Show Gist options
  • Save adamramadhan/309882 to your computer and use it in GitHub Desktop.
Save adamramadhan/309882 to your computer and use it in GitHub Desktop.
<?php
preg_match("/(?P<foo>abc)(.*)(?P<bar>xyz)/",
'abcdefghijklmnopqrstuvwxyz',
$matches);
print_r($matches);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment