drls2738 2011-10-14 15:30
浏览 67
已采纳

PHP:从函数内部声明具有全局范围的变量[duplicate]

Possible Duplicate:
Declaring a global variable inside a function

Is it possible to declare variable with global scope from inside a function?

NOTE: I don't want to receive the value of a previously declared variable outside the function. But to have the values of the variables declared inside the function working outside the function scope.

I a way that if I have these variables declared inside a function:

function variables($n){
    $a=1+$n;
    $b="This is number +$n";
}

I could echo them outside the function:

variables(1);
echo $a;
echo '
';
echo $b;

2
This is number 1

I know I could achieve it returning an array from the function but... I'd like to be sure I could otherwise.

I saw nothing here: http://php.net/manual/en/language.variables.scope.php

Thanks.

  • 写回答

1条回答 默认 最新

  • duankui3838 2011-10-14 15:34
    关注

    You can read elsewhere about why globals are bad, so I'll just stick to the question. You can use the global keyword for this. The same applies if you want to read a global from inside a function.

    function variables($n){
        global $a,$b;
        $a=1+$n;
        $b="This is number +$n";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号