Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

PHP's assert statement doesn't behave like most other languages.

assert('return false'); actually evaluates the string and then asserts its result (false).

Instead of comparing the paramter to true, it goes through the extra step of examining the argument, and if it's a string evaluating it, then performing the comparison.

Very strange indeed.

My problem is not in understanding the behaviour, my problem is coming up with a valid reason for this behaviour, esp. since you now have to do the extra mental work of thinking... "does that evaluate to a string?".

Thanks

share|improve this question
1  
It's probably better to do the work of adding quotes around the expression inside the assert, forcing it to be a string, than to try to figure out if it might be. – rjmunro Sep 10 '10 at 11:23

2 Answers

up vote 10 down vote accepted

The advantages of a string assertion are less overhead when assertion checking is off and messages containing the assertion expression when an assertion fails. This means that if you pass a boolean condition as assertion this condition will not show up as parameter to the assertion function which you may have defined with the assert_options() function, the condition is converted to a string before calling that handler function, and the boolean FALSE is converted as the empty string.

from http://www.php.net/manual/en/function.assert.php

share|improve this answer
good find in the docs. spells it right out. – Evan Teran Mar 15 '09 at 18:14

I would guess it simply is so they didn't need to special case a particular part of the language. I believe that in PHP if you treat a string like an expression is it evaluated automatically. This way you can do things like just pass the name of a function and try to "call" it and it works (function pointers without the pointers :-P).

EDIT: see Jakob's answer for a relevant quote from the PHP docs about assert as well.

share|improve this answer
1  
What do you mean "if you treat a string like an expression is it evaluated automatically"? Can you give an example? This sounds totally crazy and wrong, unless I am misunderstanding you. As far as I know, the above is a special feature of assert. – rjmunro Sep 10 '10 at 11:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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