vote up 8 vote down star

I'm writing a php app to access a MySQL database, and on a tutorial, it says something of the form

mysql_connect($host, $user, $pass) or die("could not connect");

How does PHP know that the function failed so that it runs the die part? I guess I'm asking how the "or" part of it works. I don't think I've seen it before.

flag

1  
As an aside, don't use this kind of logic in actual applications. It still amazes me how many tutorials do that. – Eran Galperin Jan 11 at 6:29
Why not use it? It is really nice and readable... – rkj Jan 11 at 6:46
Is might be simple and appropriate for a tutorial, but you do not want your script to die ungracefully with an error message like that in front of real users. Showing a custom error page (without specifying the actual error!) + logging the error is a must. – Eran Galperin Jan 11 at 6:58
You might still be able to use this technique to do that, though. – Artelius Jan 11 at 6:58
1  
mysql_connect($host, $user, $pass) or PrintNiceError('DatabsaeConnectionError'); – sirlancelot Jan 12 at 8:39
show 2 more comments

3 Answers

vote up 13 vote down check

if the first statement returns true, then the entire statement must be true therefore the second part is never executed.

for example:

$x = 5;
true or $x++;
echo $x;  // 5

false or $x++;
echo $x; // 6

Therefore, if your query is unsuccessful, it will evaluate the die() statement and end the script.

link|flag
Thanks for the help, mate. – chustar Jan 11 at 6:20
Niiiice and so simple. I finally understand how it works. Could have realised this myself, d'oh! – MasterPeter May 18 at 13:04
Good explanation. This "implied if" language construct of PHP is a little dangerous, because you can have statements that you think get executed but really don't, and that's not as obvious as if you had an if block. – Petruza Aug 7 at 15:34
vote up 5 vote down

It works as others have described.

In PHP, do not use "die", as it does NOT raise an exception (as it does in Perl). Instead throw an exception properly in the normal way.

die cannot be caught in PHP, and does not log - instead it prints the message ungracefully and immediately quits the script without telling anybody anything or giving you any opportunity to record the event, retry etc.

link|flag
vote up 7 vote down

PHP's or works like C's || (which incidentally is also supported by PHP - or just looks nicer and has different operator precedence - see this page).

It's known as a short-circuit operator because it will skip any evaluations once it has enough information to decide the final value.

In your example, if mysql_connect() returns TRUE, then PHP already knows that the whole statement will evaluate to TRUE no matter what die() evalutes to, and hence die() isn't evaluated.

If mysql_connect() returns FALSE, PHP doesn't know whether the whole statement will evaluate to TRUE or FALSE so it goes on and tries to evalute die() - ending the script in the process.

It's just a nice trick that takes advantage of the way or works.

link|flag

Your Answer

Get an OpenID
or

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