如何在同一控制器中的两个函数之间传递变量?
我是否需要使用 $ this-> session-> set_flashdata 这是正确的方法吗?
function load() {
$this->userhash = $this->uri->segment(3);
}
function save() {
$query_customer = $this->Customers->get_customer($this->userhash);
}
抱歉,如果这是基本的东西,但我还在学习。
我需要修改我的问题
在Ivan链接中,我也用Google搜索了
有一个类似这样的代码
function index() {
$this->msg = 'data';
$this->testme();
}
function testme() {
echo $this->msg;
}
及其作品,但我无法直接在 index()中调用 $ this-> testme(),因此无法加载保存( 加载()
中的