Is there any way that I can get content of a PHP file in to variable?
I want to do this
$msg = $this->load->view(\'some_view\');
It is possible:
$msg = $this->load->view('some_view', '', true);