我正在尝试使用此代码将facebook个人资料图片保存到我的服务器。 如果我把fb ID放在echo $ id的位置,这段代码就可以了。像这样 - > $ image = file_get_contents('https://graph.facebook.com/1234728353274856/picture?width=2048&height=1536');
但我需要使用php动态显示id。
我尝试使用下面的代码,但它不起作用。
请帮助。
<?php if(isset($_SESSION['FBID'])); {
$id= $_SESSION['FBID'];
$image = file_get_contents('https://graph.facebook.com/{echo $id;}/picture?width=2048&height=1536');
file_put_contents('C:/wamp/www/fbapp/images/image.jpg', $image);
?>