Scott writes:
> What is the shortest way to test a variable for truth and then set its
> value to false such that the truth test still succeeds?

Hmmm .. so, after the test, no matter what the inital value of your variable
is, it will be false. So:

        $a&&do_something();$a=0;

--Ala

Reply via email to