ogenes/phone-check

固话和手机号自动解析验证

1.0.0 2021-07-01 02:42 UTC

This package is auto-updated.

Last update: 2025-05-29 01:37:15 UTC


README

固话和手机号自动解析并验证

install

composer require ogenes/phone-check

demo

use Ogenes\PhoneCheck\Client;

try
{
    $tel = "(0376) 803 9551;13478946254‬‬";
    $ret = Client::analysis($tel);
} catch (InvalidArgumentException  $e)
{
    $ret = $e->getMessage();
}
print_r($ret);