2
在Ci中,如何從同一個類中的另一個方法獲取變量?CodeIgniter從同一類中的其他方法獲取變量
在Ci中,如何從同一個類中的另一個方法獲取變量?CodeIgniter從同一類中的其他方法獲取變量
您必須將其設置爲類變量並使用它。
喜歡的東西:
<?php
class Blog extends CI_Controller {
$my_variable = null;
function _set_myvariable()
{
$this->my_variable = "this variable has a value";
}
function get_variable()
{
echo $this->my_variable; // outputs NULL
$this->_set_myvariable();
echo $this->my_variable; // outputs "this variable has a value"
}
}
?>
調用get_variable
方法:
_set_myvariable
私有函數(注意, 「_」 開始的函數名),將設置類變量。好涼快。謝謝! – 2012-01-12 22:41:53
你說的「抓住從另一個方法的變量」是什麼意思? – 2012-01-12 22:08:33