[ create a new paste ] login | about

Link: http://codepad.org/fgRfAPAI    [ raw code | output | fork | 1 comment ]

PHP, pasted on Jan 15:
1
2
3
4
5
<?php 
$s1 = 'FF';
$s2 = 'EF';
    $x = dechex(hexdec($s1) ^ hexdec($s2));
var_dump($x);


Output:
1
string(2) "10"


Create a new paste based on this one


Comments:
posted by welllima88 on Jun 25
PERFECT \o/
reply