PHP 如何在方法體外部取得內部變數?
过去多啦不再A梦
过去多啦不再A梦 2017-05-19 10:08:55
0
2
655

1.原始碼:

    public function importexcel(Request $request){
        $file = Input::file('myfile');
        if($file->isValid()){
            $tmpName = $file->getClientOriginalName();
            $path = $file->move(storage_path().'/uploads',$tmpName);
            $subtmpName = substr($tmpName,0,-5);

            $filePath = "storage/uploads/".iconv('UTF-8', 'UTF-8', $subtmpName).'.xlsx';

            Excel::load($filePath, function($reader) {
                $reader->noHeading();
                $data = $reader->toArray();
                for($i = 1;$i<count($data);$i++){
                     $midArr = $data[$i];
                     //获取一个人员的Player_id字段
                     if($i == 1){
                         $first_player_id = $data[1][0];
                     }
                     for($j = 0;$j<count($midArr);$j++){                   
                          $player_id = (string)$midArr[0];
                          $node = (string)$midArr[1];
                          $childnode = (string)$midArr[2];
                          $time = (string)$midArr[3];
                         $uuid = (string)UUID::generate();
                         //将Excel表中的数据导入score表中
                        ***$result =  DB::insert('insert into score (id,player_id,node,childnode,time) values (?,?,?,?,?)',[$uuid,$player_id,$node,$childnode,$time]);***
                     
                     }
                }
            });
        }else{
            //Excel数据不合法的情况
        }

        dd($result);
    }
    

2.問題:在函數體內變數$result(斜體)如何在方法體外部被呼叫即程式碼dd($result)處?

解決:參考:

<?php
class demo{
    public $var1 = null;
    public function func1(){
        $this->var1 = 'from func1';
    }
 
    public function func2(){
        echo $this->var1;
    }
}
$demo = new demo();
$demo->func1();
$demo->func2();

在類別定義變量,可以解決。有一點不好就是能讓類別內的所有方法都能存取。我是希望變數只存在方法importexcel()體內,在 Excel::load($filePath, function($reader) {}變數$return,可以在外Excel::load()被存取到。

过去多啦不再A梦
过去多啦不再A梦

全部回覆(2)
PHPzhong

$結果 = Excel::load($filePath, function($reader) {

雷雷
PHPzhong

return $result ,在外部直接使用訪問importexcel這個類,由於你這個$result的結果由importexcel函數邏輯生成,不建議直接訪問

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板