get_output()
Returns: | Output string |
---|---|
Return type: | string |
Permits you to manually retrieve any output that has been sent for storage in the output class. Usage example:
$string = $this->output->get_output();
Note that data will only be retrievable from this function if it has been previously sent to the output class by one of the CodeIgniter functions like $this->load->view()
.
Please login to continue.