Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Throwing Exceptions

Bernardo Leal
Bernardo Leal
5,715 Points

Error reporting is off? For a while now Workspaces does not work properly for me.

If there are errors, warnings or exceptions I just get a HTTP 500 error. How is it possible?

Bernardo Leal
Bernardo Leal
5,715 Points

I have to do ini_set() but it makes no sense...

1 Answer

The working version:

ini_set('display_errors', 'On');

class myData
{
  function getData()
  {
    if( !$file = fopen("data.txt", "r")) {
      throw new Exception('Unable to access file');
    }
  }
}

$data = new myData();

try {
  $data->getData();
} catch(Exception $e) {
  echo $e->getMessage();
}

echo "End of File";