Commit c94d0889 c94d08892d0d511c5f65d8575bd8843d22a99eb0 by lemon

加入销毁变量

1 parent 1c7fe263
...@@ -97,9 +97,12 @@ class StakeholderIncomeSyncCommand extends Command ...@@ -97,9 +97,12 @@ class StakeholderIncomeSyncCommand extends Command
97 $this->consumeTask($redis, $http_res, $key, $id); 97 $this->consumeTask($redis, $http_res, $key, $id);
98 98
99 //销毁变量 99 //销毁变量
100 unset($redis, $id, $task, $serial_no, $http_res, $http_data); 100 unset($id, $task, $serial_no, $http_res, $http_data);
101 } 101 }
102 } 102
103 unset($redis, $key);
104
105 } //while (true) {
103 } 106 }
104 107
105 /** 108 /**
......