As I mentioned earlier, in the script below, I don't know what is the data type of "0XB"?
$a = 0XB;
$b= 1;
$c= $a + $b;
var_dump($c);
The result is 12, which means 0XB is 11, I am not sure how PHP interpreter 0XB is equal to 11.
Can someone give me an explanation regarding this one and the use cases of this data type?
Thank you in advanced