I came across this line of code in an application I am revising:
substr($sometext1 ^ $sometext2, 0, 512);
What does the ^ mean?
|
I came across this line of code in an application I am revising:
What does the |
||||
|
|
|
It's a bitwise operator. Example:
Outputs the ascii values |
|||
|
|
|
|||
|
|
|
XOR (Exclusive OR)
|
|||
|
|
|
It's the XOR (exclusive-or) operator. For strings it's used as simple encryption. |
|||
|
|
|
That's the bitwise OR operator - in PHP, it also applies to strings. |
|||
|
|
|
In PHP, In other words it does this:
|
|||||||||
|
|
^ Matches the starting position within the string. In line-based tools, it matches the starting position of any line. |
|||||
|