这是在PHP测试中,我真的不知道这个功能的目的:
function myFunction (int x)
{
if ((x & 1) == 0) {
return true;
} else {
return false;
}
}
解释这个的任何帮助都很可爱
答案 0 :(得分:0)
它只检查该值是否为偶数。
e.g。
myFunction(3); //this would be false
myFunction(4); //this would be true