Get Facebook video id from Video url Using PHP,  Get Facebook video id from url PHP script Code
Hi Friends Today, I will tell you how to get the id of the video from the Facebook video url. I will tell you through php programming that you can use the php program to get the id of the video from any video URL.
This is a facebook video url link. From which I will tell you the php script code to get the id of this video.
"https://www.facebook.com/searchbangladeshofficial/videos/1180300868811111/"
<?php 
preg_match("#(\d+)/$#", 'https://www.facebook.com/searchbangladeshofficial/videos/1180300868811111/', $vid);
echo $vid[1]; 
//1180300868811111    output //
?>
We can write this video url in a variable as well as
<?php
$fburl = "https://www.facebook.com/searchbangladeshofficial/videos/1180300868811111/";
preg_match("#(\d+)/$#", $fburl, $vid);
echo $vid[1];
//1180300868811111   output //
?>