Skip to content

Instantly share code, notes, and snippets.

@washingtonsoares
Created November 9, 2014 18:14
Show Gist options
  • Save washingtonsoares/2ab826324d56af38f7ec to your computer and use it in GitHub Desktop.
Save washingtonsoares/2ab826324d56af38f7ec to your computer and use it in GitHub Desktop.
<?php
$url = "https://www.youtube.com/watch?v=4Sc6lSMnp0c";
parse_str( parse_url( $url, PHP_URL_QUERY ), $my_array_of_vars );
$teste = $my_array_of_vars['v'];
$width = 400;
$height = 300;
?>
<iframe width="<?php echo $width ?>" height="<?php echo $height ?>" src="//www.youtube.com/embed/<?php echo $teste?>" frameborder="0" allowfullscreen>
</iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment