php函数中的变量范围

时间:2014-03-31 07:33:34

标签: php

这是我的脚本。 我声明很少变量外部函数。我想在功能中使用它,是否可用?

<?php

session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('follow.php');

require_once('config.php');

if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
header('Location: ./clearsessions.php');
}
$access_token = $_SESSION['access_token'];
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
$content = $connection->get('account/verify_credentials');
$twitteruser = $content->{'screen_name'};
$userid = $content->{'id'};
$temp = "1";
$tweets1 = $connection->get("https://api.twitter.com/1.1/statuses/retweets_of_me.json?count=200");
$tweets3 = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?trim_user=true&include_rts=true");

$tweets4 = $connection->get("https://api.twitter.com/1.1/statuses/home_timeline.json?include_rts=true&trim_use=true");

foreach ($tweets1 as $item)
{
$text = $item->text;
$follow_count = getfollow($m[1]);
echo "followe count is $follow_count <br>";
lookup($item->user->id_str);

}

function lookup($userid)
{
//echo "userid : $userid temp : $temp";
$tweets5 = $connection->get("https://api.twitter.com/1.1/users/lookup.json?user_id='.$userid.' ");

$CONNECTION IS not availabl here? WHY?

foreach ($tweets5 as $item)
{
$text = $item->name;

}
return;
}

?>

4 个答案:

答案 0 :(得分:2)

一个函数有自己的范围。您必须提供要在参数中使用的所有变量,除非它们位于$ _SESSION,$ _SERVER等变量中。

答案 1 :(得分:2)

通过参数:

交出
function lookup($userid, $connection) {
    //code here
}

只有Superglobals可用于内部功能。其他所有东西都通过参数传递。

答案 2 :(得分:-2)

您可以通过将外部变量定义为全局变量来使用外部变量,也可以将它们作为参数传递给函数。

$str= 'str';

function test()
{
    global $str;
    echo $str;
}

function test($str)
{
    echo $str;
}

答案 3 :(得分:-3)

使用global关键字应该可以解决问题:

$foo = '123';

function bar() {
    global $foo;
    echo $foo;
}

但是我看到它的方式,你可以把变量传递给那个函数。