up vote 4 down vote favorite
1
share [g+] share [fb]

I have a select() method in a database class, that has an optional boolean argument $sum. This argument is used to say if the method should or not use COUNT(*) too.

I would like to show a warning, like those normal PHP errors, if I try to access class->sum if the attribute is not set (i.e. when I call select() with $sum = false.

Is there any way to show a warning like this, or I should just echo an error and be happy?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 8 down vote accepted

You could try trigger_error().

link|improve this answer
3  
... Using E_WARNING as the 2nd argument. – too much php Jul 8 '09 at 3:18
trigger_error() can only accept warnings of the E_USER family; use E_USER_WARNING instead. – jevon Jan 12 at 0:08
feedback

You're going the object-oriented approach, so I suggest a look into exceptions.

link|improve this answer
1  
+1 Exceptions will give you the full backtrace information for debugging, whereas trigger_error() will not give you a useful file name / line number. – too much php Jul 8 '09 at 3:25
Yes, you are right, but an exception for this problem is just so much trouble. It's an easy recoverable non-fatal error, that would happen quickly on developing; triggering an warning is enough to inform the dev about what happened. – Igoru Jul 10 '09 at 22:14
feedback

Your Answer

 
or
required, but never shown

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