Kmspico Download | Official KMS Activator Website [New Version 2024] Fast and Easy Converter YouTube to MP3 Online KMSAuto Net Activator Download 2024 Immediate Byte Pro Neoprofit AI Blacksprut without borders. Discover new shopping opportunities here where each link is an entrance to a world ruled by anonymity and freedom.

How to Get Facebook Video Id From Video URL Using PHP?

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 //
?>