Working with an MVC framework and the controller renders the page in the destructor. I am downloading a file through php, so at the end of the action the script should end.
How to end the script without calling the destructor?
Is there a better solution?
exit and die call the destructor.
As David said: you’ll need to call exit() inside a destructor to stop it.
If however you just want to halt the visual output caused by these destructors but not any other side-effects (file closing, database connection closing) they might do, then it’s best to just kill the further output but leave the destructors alone. Which in my opinion would be the route to take since destructors tend to be there for one important reason: cleaning up.
you can do that by manipulating buffered output:
this will only print
runand not what’s in the destructor. It’s done by giving your own callback routine to ob_start that handles and then returns the output. In our case here we simply discard it by returning an empty string.