Output Class in CI4? |
I'm converting an app from CI3x to CI4x. I see that the Input class is more or less replaced by Request, but I don't see a counterpart for Output.
For example, how would I convert this? PHP Code: $this->output->set_content_type(get_mime_by_extension($thumb_path)); Nevermind. It's Response for anyone else looking for it.
The equivalents are basically the IncomingRequest class (for input), and the Response class (for output). When returning files, you can use the download features of the Response class
|
Welcome Guest, Not a member yet? Register Sign In |