我正在尝试使用预先制作的软件包在PHP中使用directadmin创建转销商帐户,但它不起作用..我使用了我的管理员帐户。
创建用户帐户时没有任何问题:
bool myFunction(int i) {
bool myArray[i] = //some other array of bools
//should workwith any value of i
bool result;
unsigned int a;
for (a = 0, result = myArray[a]; a < i && result; result=myArray[++i]) {}
//no need to use the AND operator since we stop if we meet one false
return result;
}