|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2003-05-11 08:25 UTC] moriyoshi@php.net
  [2003-05-28 01:00 UTC] php-bugs at lists dot php dot net
  [2003-06-21 13:26 UTC] cunha17 at uol dot com dot br
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 14:00:01 2025 UTC | 
Well, I don't know exacly what caused the bug, but I know I could reproduce it. Basically, Apache2(2.0.45) crashes when I run a certain script. I use PHP5 of April 13th at 19:30 right now. I was testing new features. Everything worked well (nice job guys) until I placed a throw( new Exception( "Variable not found" )); in function __get($name){}. -- class foo { function __get( $name ) { throw( new Exception( "Variable not found" )); } } $o = new foo; try { echo $o->bar; } catch( Exception $e ) { echo $e; } -- If you need more details, feel free to contact me. -- Louis-Philippe Huberdeau