PHP保留两位小数的几种方法

2025-04-29 12:15:58
推荐回答(1个)
回答1:

int inthestr(char *s,char ch)
{
while(*s!='\0'){
if(*s==ch)
return 1;
s++;
}
return 0;
}