Tagged Questions

2
votes
3answers
331 views

boolean variable values in PHP to javascript implementation

I've run into an odd issue in a PHP script that I'm writing-- I'm sure there's an easy answer but I'm not seeing it. I'm pulling some vars from a DB using PHP, then passing those values into a ...
1
vote
4answers
60 views

PHP and fancy boolean

Having some problems with booleans in php, would be very grateful if anyone could explain why the following doesnt work $var = "asdas"; // or this if(!isset($var) || ($var && !$var)){ ...
1
vote
11answers
254 views

Is it possible to make an object return false by default?

I tried to ask this before, and messed up the question, so I'll try again. Is it possible to make an object return false by default when put in an if statement? What I want: $dog = new DogObject(); ...
0
votes
2answers
134 views

Boolean algebra - Finding an item exists or not?

I have the following items Apple= 00000001 (1) Mango= 00000010 (2) Banana= 00000100 (4) Grapes= 00001000 (8) Now I am storing the fruits a user can have like this by doing or'd ...
0
votes
3answers
75 views

Why is the corresponding statement not executed even if echo empty($location) prints out 1

echo empty($location); switch($location){ case (empty($location)): expression 1; break; case ($location%10000==0): expression 2; break; case ($location%100==0): expression 3; ...
0
votes
4answers
251 views

How can I make a custom exception object evaluate to false in an if condition?

I was just wondering if there was any way to make my object return false if placed in an if statement. The reason is I'm making a custom exception class. I would like to be able to do something ...