<?php function andnot($a, $b) { return $a & ~$b; } var_dump(andnot(15, 3)); var_dump(andnot(15, "3")); var_dump(andnot("15", 3)); var_dump(andnot("15", "3"));
You have javascript disabled. You will not be able to edit any code.