$file=file_get_contents('https://graph.facebook.com/me?access_token=1932993|twetrg|vsfgsewr');
代码得到的反应也很好。
但是当我这样写时:
1. $tk='';
2. $tk='1932993|twetrg|vsfgsewr';//intialize the token value to variable
3. $file=file_get_contents('https://graph.facebook.com/me?access_token=$tk');
然后第3行显示警告“无法打开流:HTTP请求失败!”
请帮助我
答案 0 :(得分:4)
单引号中不会发生变量插值。
因此请使用双引号:
$file=file_get_contents("https://graph.facebook.com/me?access_token=$tk");
或者你可以这样做:
$file=file_get_contents('https://graph.facebook.com/me?access_token='.$tk);