下面的java代码如何转换成php代码?
/*
* 数据异或
*/
public String XOR(String str1, String str2) {
String hex = "";
if (str1.length() != str2.length()) {
System.out.println("异或数据长度不等");
}
for (int i = 0; i < str1.length(); i++) {
hex = hex
+ Integer.toHexString((Integer.parseInt(str1.charAt(i) + "", 16) ^ Integer.parseInt(str2.charAt(i)+ "", 16)));
}
return hex.toUpperCase();
}