fb.php:
function connectfb($a) {
$fb = curl_init();
curl_setopt( $fb, CURLOPT_URL, $a );
curl_setopt( $fb, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $fb, CURLOPT_HEADER, 0 );
curl_setopt( $fb, CURLOPT_SSL_VERIFYHOST, 0 );
curl_setopt( $fb, CURLOPT_SSL_VERIFYPEER, 0 );
$work = curl_exec($fb);
curl_close($fb);
return $work;
}
$link = connectfb("curl şurada" );
echo $link;
die;
?>
page.php:
$file = file_get_contents('http://localhost/xxx/functions/fb.php');
$jsonn = json_decode($file);
$a = $jsonn->videos->data[0]->embed_html;
echo htmlspecialchars($a);
?>
Tekrar teşekkürler..