문제

I have a Motorola i475w and I want to do a WAP website that gets my cellphone's ID when I access it. The website uses PHP and WML. How can I get cellphone's ID using WML/PHP?

도움이 되었습니까?

해결책

Well you can only look at the headers. Sometimes the IMEI number is sent along with the headers but they are not guaranteed to be present.

foreach (getallheaders() as $name => $value) {
    echo "$name: $value\n";
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top