Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I came across this line of code in an application I am revising:

substr($sometext1 ^ $sometext2, 0, 512);

What does the ^ mean?

share|improve this question

7 Answers

up vote 3 down vote accepted

It's a bitwise operator.

Example:

"hallo" ^ "hello"

Outputs the ascii values #0 #4 #0 #0 #0 ('a' ^ 'e' = #4)

share|improve this answer
im having tough time understanding about the ascii values, if we take a and e as binary equivalents like so: a=01100101 e=01100001 --------- xor=00000100 is this right? – chicane Apr 28 '10 at 1:20

^ is the bitwise exclusive OR operator. For each bit in a value, it looks to see if that bit is the same in the other value; if it is the same, a 0 is output in its place, otherwise a 1 is output. For example:

  00001111
^ 01010101
  --------
  01011010
share|improve this answer

XOR (Exclusive OR)

$a ^ $b means Bits that are set in $a or $b but not both are set.

http://php.net/manual/en/language.operators.bitwise.php

share|improve this answer

It's the XOR (exclusive-or) operator. For strings it's used as simple encryption.

share|improve this answer

That's the bitwise OR operator - in PHP, it also applies to strings.

share|improve this answer

In PHP, ^ is mean 'bitwise XOR'. Your code there xor's together two strings, then returns at most the first 512 characters.

In other words it does this:

return (at most the first 512 characters of (someText1 XOR someText2))
share|improve this answer
1  
Did you mean 512 or 12? – Mitch Dempsey Apr 27 '10 at 20:51
@webdestroya: 512, of course :) - it was a typo; thanks. +1 :) – Cam Apr 27 '10 at 20:53
I figured, thought I'd point it out – Mitch Dempsey Apr 27 '10 at 20:54

^ Matches the starting position within the string. In line-based tools, it matches the starting position of any line.

share|improve this answer
that would be a regular expression – Nils Apr 27 '10 at 20:55
which it would do since the first character that does not match is now XOR'd and will show up as a 1. I guess it would depend on what the original code was trying to accomplish - based on this example of "what does this do" .. we would of course need to know more information - as opposed to "what does this "^" character do. – huh Apr 27 '10 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.