Skip to content

Instantly share code, notes, and snippets.

@tsabat
Created June 17, 2013 23:55
Show Gist options
  • Save tsabat/5801560 to your computer and use it in GitHub Desktop.
Save tsabat/5801560 to your computer and use it in GitHub Desktop.
<?php
echo 'hi';
$str = '<iframe src="http://player.vimeo.com/video/68302803" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
$matches = preg_match('/player\.vimeo\.com\/video\/(\d+)/', $str, $arr);
if ($matches) {
echo $arr[1];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment