在课堂上声明变量

时间:2015-10-08 03:15:27

标签: php oop laravel laravel-5.1

是否可以将变量声明为类的任何部分? 我有这个代码,我正在使用laravel 5.1框架

在我的控制器中

 public function myTest(){

     $i = 0;<--- is it okay to declare if we use oop,or we should put on top and declare private.
     foreach($myarray as $arr){
            // do something
             // do something with $i
      }


   }

1 个答案:

答案 0 :(得分:0)

这很好。但是您的变量范围仅限于该函数。在该函数之外,您无法使用该变量。当你在循环中使用它时,这将起作用。你也可以把它变成全局变量。这将使您的工作变得轻松。