Quantcast
Channel: CodeIgniter Forums - All Forums
Viewing all articles
Browse latest Browse all 14114

Break execution of function

$
0
0
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...

Viewing all articles
Browse latest Browse all 14114


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>