Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // find XOR
- // Returns XOR of x and y
- function myXOR($x, $y)
- {
- return ($x | $y) & (~$x | ~$y);
- }
- echo myXOR(3, 4) . " sama dengan " . (3 ^ 4)
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement