我是codeigniter的新手,我遇到了问题。你能帮我理解如何从一个控制器的函数中获取数据,我尝试使用这样的简单代码
public function cow() {
$first=$this->input->post('name');
}
public function bird() {
// how to display variable $first = " hello world" in here
}
我希望你能帮助我们,:)。
答案 0 :(得分:0)
如果两者都是同一个控制器,则可以使用$this
来访问该功能
public function cow() {
$first= 'some text';
return $first; # Add this
}
public function bird() {
echo $this->cow();
}
注意:如果您从表单获取输入,则无法通过鸟类功能访问