CI框架 一个方法如何调用另一个方法的变量
<?phpclassHeaderextendsCI_Controller{public$name=null;publicfunction__construct(){par...
<?php
class Header extends CI_Controller {
public $name = null;
public function __construct()
{
parent::__construct();
}
public function index()
{
$name=$this->input->post('name');
$this->name = $name;
$pass=$this->input->post('pass');
if($name!=''&&$pass!='') {
$this->load->database();
$query = $this->db->query("SELECT * FROM user WHERE a='".$name."' && b='".$pass."'");
if ($query->num_rows() > 0)
{$this->load->view("view02");}
else{
$this->load->view("view01");
}
}
else{$this->load->view("view01");}
}
public function news()
{$this->load->view("view02");}
public function lyb()
{
echo 'hello word';
echo $this->name;
}
}
?>
我想在 方法lyb()中调用方法Index()中的变量 $name 和pass 如何写代码 ,感谢 ,最好详细点 展开
class Header extends CI_Controller {
public $name = null;
public function __construct()
{
parent::__construct();
}
public function index()
{
$name=$this->input->post('name');
$this->name = $name;
$pass=$this->input->post('pass');
if($name!=''&&$pass!='') {
$this->load->database();
$query = $this->db->query("SELECT * FROM user WHERE a='".$name."' && b='".$pass."'");
if ($query->num_rows() > 0)
{$this->load->view("view02");}
else{
$this->load->view("view01");
}
}
else{$this->load->view("view01");}
}
public function news()
{$this->load->view("view02");}
public function lyb()
{
echo 'hello word';
echo $this->name;
}
}
?>
我想在 方法lyb()中调用方法Index()中的变量 $name 和pass 如何写代码 ,感谢 ,最好详细点 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏20(财富值+成长值)
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询