I came across this line of code in an application I am revising:
substr($sometext1 ^ $sometext2, 0, 512);
What does the ^ mean
^
^ matches the starting position within the string. In line-based tools, it matches the starting position of any line.