This mobile phone number ownership query code is a PHP open source mobile phone ownership query system. This system does not rely on large databases such as mysql, but relies on text, because generally a mobile phone number is determined in the query system The function is the first 7 digits
Mobile phone number location query code
/*
This mobile phone number ownership query code is a PHP tutorial open source mobile phone ownership query system. This system does not rely on large database tutorials such as mysql tutorials, but relies on text, because generally a mobile phone number is determined in the query system The effect is the first 7
*/
if( $_post )
{
$phone=(isset($_post["phone"]))?$_post["phone"]:die ("Please return");
echo "You are querying: $phone, data: ".getphone($phone);
function getphone($phone){
$dbpath="datas/";
$len=strlen($phone);
if ( $len !=11 ){
return "Mobile phone number only supports 11 digits";
}
$par="[0-9]";
for ($i=0;$i if(!ereg($par,substr($phone,$i,1) ) ){
return "Mobile phone number can only be digits";
}
}
$sunum=scandir($dbpath); //Supported mobile phone number prefix
array_splice($sunum,0,1); //Cancel the current directory
array_splice($sunum,0,1); //Remove the upper level directory
$sub=substr($phone,0,3); //Get the first three digits of the number
if (in_array($sub,$sunum) ){
$num=substr($phone,3,4);
$search=file($dbpath.$sub);
$result=str_replace($num."=","",$search[$num]); //Process data
return (strlen($result)>1)?$result:"0";}else{
return "$sub is not supported yet";
}}
}
?>
Mobile phone number location inquiry

手机是空号的原因:1、手机号码被对方拉入黑名单;2、对方设置了呼叫转移功能,且转移的号码为非常规手机号段,例如随意按的11位数字;3、号码错误;4、虚拟号码;5、号码被注销,正处于回收冻结期;6、运营商系统故障,会区域性的、范围性的导致用户手机出现空号状态;7、信号不好;8、号码格式不对;9、手机卡故障;10、特殊彩铃。

不知道大家有没有这样一种经历,手机经常会收到莫名其妙的一些短信,或者是一些网站的注册信息或者其他的一些验证信息,实际可能我们的手机号绑定了很多陌生的网站,我们自己都不知情,那么今天给大家分享的是教你如何一键解除所有陌生的网站绑定。步骤一、打开码号服务平台这个技巧非常实用。操作步骤如下:打开微信,点击搜索框的加号图标,选择添加朋友,然后输入码号服务平台进行搜索。我们可以看到有一个码号服务平台,当然它是属于事业单位,是国家信通院推出的,可以帮助大家一键解除手机号绑定信息。步骤二、查询手机是否被标记我

高德地图以其精准的定位和丰富的功能受到了广大用户的喜爱。然而,在使用过程中,有时我们可能需要更换绑定的手机号码,以确保个人信息和服务的准确性。那么,高德地图手机号码如何换绑呢?小编整理了一些相关资料,快来和我一起看看吧!高德地图手机号码如何换绑?答案:【高德地图】-【我的】-【设置图标】-【账号与安全】-【手机号】-【更换】-【下一步】。具体步骤:1、首先打开高德地图软件,进入到首页中我们需要点击右下角的【我的】;2、然后在我的一秒钟红可以看到一些相关的功能,在这里我们点击右上角的【设置图标】;

随着移动通信技术的不断进步,手机号码已经成为我们日常生活中必不可缺的通信工具。有时候,我们会需要查询某个手机号码的使用状态,比如验证该号码是否已停机或欠费。一、如何查询手机号码的使用状态?与运营商客服取得联系是查询手机号码使用状态最直接的方式。不同的运营商可能会有不同的查询方式,但通常可以通过拨打运营商的客服热线来实现。在与客服人员通话时,您只需提供需要查询的手机号码,客服人员会为您提供详细的使用状态信息。因此,如果您想了解某个手机号码的具体情况,可以通过拨打运营商客服热线来获取相关信息。现在有

很多小伙伴不知道QQ邮箱如何更改手机号码绑定,所以下面小编就分享了QQ邮箱更改手机号码绑定的方法,一起跟着小编来看看吧,相信对大家会有帮助。第一步:首先打开qq邮箱,选择上方的设置,如下图。第二步:在设置中选择账户选项,如下图。第三步:选择立即注销,如下图。第四步:注销后,选择注册手机号邮箱帐号。第五步:在出现的界面中选择注册其他账号,如下图。第六步:根据提示使用新的手机号码,发送短信,如下图。第七步:发送完成后,就更改成功了。上面就是小编为大家带来的QQ邮箱如何更改手机号码绑定的全部内容,希望

PHP查询手机号码归属地的方法:1、请求手机号码归属查询API;2、根据手机号码或手机号码的前7位,查询手机号码归属地信息;3、通过“function juheHttpRequest($url, $params = false, $ispost = 0){...}”方法请求接口返回内容即可。

PHP如何查询Oracle数据库中的数据随着互联网时代的到来,网站和应用程序的开发越来越普遍。而数据库作为数据存储和管理的关键技术,也成为了开发者们必备的工具之一。其中,Oracle数据库作为一款功能强大、稳定可靠的关系型数据库管理系统,在企业级应用中得到了广泛应用。而在开发网站或应用程序时,如何使用PHP进行Oracle数据库的查询是一个非常重要的问题。在

PHP表单处理:表单数据查询与筛选引言在Web开发中,表单是一种重要的交互方式,用户可以通过表单向服务器提交数据并进行进一步的处理。本文将介绍如何使用PHP处理表单数据的查询与筛选功能。表单的设计与提交首先,我们需要设计一个包含查询与筛选功能的表单。常见的表单元素包括输入框、下拉列表、单选框、复选框等,根据具体需求进行设计。用户在提交表单时,会将数据以POS


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
