Abnormal script termination

Although you would obviously rather that your PHP scripts always execute correctly from the start of the script to the end of the script, there are a variety of reasons why they might not. Put succinctly, these reasons are:

  1. You've screwed up somewhere, and PHP cannot execute your code.

  2. PHP has screwed up somewhere due to a bug, and cannot continue

  3. Your script has taken too long to execute, and gets killed by PHP

  4. Your script has requested more memory than PHP can allocate, and gets killed by PHP

To be brutally honest, the first situation is unequivocably the most common. This will change a little as your skill with PHP improves, but the first situation is still the most common even amongst the most veteran programmers! There is a large chunk of this book dedicated to debugging PHP code - feel free to skip ahead to start reading there if you're already fluent with the PHP basics.

 

Want to learn PHP 7?

Hacking with PHP has been fully updated for PHP 7, and is now available as a downloadable PDF. Get over 1200 pages of hands-on PHP learning today!

If this was helpful, please take a moment to tell others about Hacking with PHP by tweeting about it!

Next chapter: Editing your PHP configuration >>

Previous chapter: Including other files

Jump to:

 

Home: Table of Contents

Copyright ©2015 Paul Hudson. Follow me: @twostraws.