Source Code:
(back to article)
<?php // Declaring a variable // and initializing it $a = 1; // Using double not operator $a = !!$a; // Displaying the value // of variable a. echo $a; ?>
Result:
Report an issue