使用PHP读取MSISDN号码,是否可能?

时间:2017-09-02 15:18:57

标签: php

当用户使用移动数据连接到互联网时,我有一个问题是读取MSISDN号码,MSISDN号码用于与数据库匹配并验证用户访问权限。当用户使用MSISDN访问不在数据库中时,服务器将通过通知提醒他们。是否可以使用PHP读取MSISDN号码?

如果是yess,那么请告诉我如何,我已经阅读了一些类似的问题,例如this link,但它不起作用,可能是由运营商隐藏内容标题引起的。

1 个答案:

答案 0 :(得分:0)

希望它能起作用

$header = apache_request_headers(); 
if(isset($header['x-up-calling-line-id']) && !empty($header['x-up-calling-line-id'])){ 
    $phone_number = $header['x-up-calling-line-id']; 
}
else{ $error_phone_number = "Phone number missing...!"; }