Я хочу передать переменные из одной функции в другую функцию в codeigniter - PullRequest
0 голосов
/ 17 сентября 2018

Я хочу получить доступ к переменным из одной функции в другую функцию в Codeigniter PHP.Переменные $fromDate и $toDate.И я хочу получить к нему доступ в функции под названием sales_reports_print.

public function get_sales_reports()
    {
        if ($this->input->post()) {
            $daterange     = $this->input->post('daterange');
            $sales=explode("-",$daterange);
             $fromDate = trim($sales[0]);
            $toDate = trim($sales[1]);

        }
        $where = array(
            'add_date >=' =>$fromDate ,'add_date <='=>$toDate
        );

        $this->data['sales_reports']=$this->Common_model->select_fields_where_like_join("add_sales","*",'',$where);
        $this->show('reports/sales_reports',$this->data);
    }



function sales_reports_print($fromDate,$toDate)
    {
        $where = array(
            'add_date >=' =>$fromDate,'add_date <='=>$toDate
        );

        $this->data['sales_reports']=$this->Common_model->select_fields_where_like_join("add_sales","*",'',$where);
        $this->show('reports/sales_reports_print',$this->data   );
    }

Ответы [ 2 ]

0 голосов
/ 17 сентября 2018

Вы просто хотите получить доступ к переменной из одной функции в другую того же класса, если я прав, тогда вы должны сохранить $fromDate и toDate во флэш-переменную и получить доступ к другой функции, как показано ниже: .

public function get_sales_reports()
{
    if ($this->input->post()) {
        $daterange     = $this->input->post('daterange');
        $sales=explode("-",$daterange);
        $fromDate = trim($sales[0]);
        $toDate = trim($sales[1]);

    }

    $this->session->set_flashdata('fromDate', $fromDate );
    $this->session->set_flashdata('toDate', $toDate );
    $where = array(
        'add_date >=' =>$fromDate ,'add_date <='=>$toDate
    );

    $this->data['sales_reports']=$this->Common_model->select_fields_where_like_join("add_sales","*",'',$where);
    $this->show('reports/sales_reports',$this->data);

}

А теперь получите доступ к этой другой функции, как.

public function sales_reports_print()
    {
        $fromDate = $this->session->flashdata('fromDate');
        $toDate = $this->session->flashdata('toDate');

        //other code goes here...
    }
0 голосов
/ 17 сентября 2018
class ABC {

    public $variable1;
    public $variable2;

    public function __construct() {

        parent::__construct();
        $this->variable1 = '';
        $this->variable2 = '';
    }

    function ab($frdate, $todate) {
        $this->variable1 = $frdate;
        $this->variable2=$todate;
    }

    function cd(){
        $fromdate=$this->variable1;
        $todate=$this->variable2;
    }

}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...