Welcome Guest, Not a member yet? Register   Sign In
Break execution of function
#1

How to break only execution of particular function?

Assume:

PHP Code:
public function show_main()
{
$this->load->view('main');
$this->f();
$this->load->view('footer');
}

private function 
f()
{
echo 
5;
exit;
echo 
10;


But this example will exit everything. And I have to put $this->output->_display() function above $this->f(); because views won't be shown.

All I want, to just function f() echo 5 and stop this function at this point. Don't echo 10. Don't exit whole output of show_main() and everything.

Just this one function, so I won't need in show_main() to add output, and views main+footer will go to browser

I hope you understand me allthough my english isn't well.
Just to break, stop, exit function, not everything...
Reply


Messages In This Thread
Break execution of function - by krystian2160 - 06-17-2017, 05:14 AM
RE: Break execution of function - by Paradinight - 06-17-2017, 05:35 AM
RE: Break execution of function - by krystian2160 - 06-17-2017, 06:47 AM



Theme © iAndrew 2016 - Forum software by © MyBB