Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to use the die() function to stop executing PHP statements on a page included on another page, but continue the execution of PHP statements on the page on which the file containing the die() function was included?

share|improve this question

3 Answers

up vote 6 down vote accepted

use return; in your included file. It will stop this include execution. It works like a function. Also you can return a value from your included file

share|improve this answer
Cool, I didn't know that. I don't think I'd ever use it though... – jeroen Mar 24 '12 at 16:53
That worked perfectly, thank you! – Proffesor Mar 24 '12 at 16:54
1  
thats the price for searching the correct cites and links to the PHP docs.. you were 3 minutes faster :-( – Kaii Mar 24 '12 at 16:57
@jeroen Yeah, it looked cool to me too when I first time seen it. In my 5+ year experience I used this only one time and in one place of my framework's code – Pleerock Mar 24 '12 at 16:59
@Kaii, yeah I understand. +1 for given detailed answer – Pleerock Mar 24 '12 at 17:03

No. die is an alias for exit which immediately stops all script execution.

But you can use return instead, which does exactly what you want:

If called from the global scope, then execution of the current script file is ended. If the current script file was include()ed or require()ed, then control is passed back to the calling file. Furthermore, if the current script file was include()ed, then the value given to return() will be returned as the value of the include() call. If return() is called from within the main script file, then script execution ends.

As stated in the excerpt from the PHP docs, you can even use it to give a exit code / return value back from the include:

$include_retval = include('file_like_function.php');
if ($include_retval) {
    die("include returned error code: " . $include_retval);
}
share|improve this answer
awesome answer. wish I could +2 it. – bkconrad Mar 24 '12 at 16:59

No. You could use try blocks instead?

  try
  {
    include $file;
  }

  catch (Exception $e)
  {
    // Whatever
  }

And throw an exception where you would use die() in $file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.