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 trialBernardo Leal
5,715 PointsError 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?
1 Answer
Kevin Nguyen
1,317 PointsThe 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";
Bernardo Leal
5,715 PointsBernardo Leal
5,715 PointsI have to do ini_set() but it makes no sense...