Coder Social home page Coder Social logo

[Bugfix] - Zero prefix about phonenumber HOT 3 CLOSED

brick avatar brick commented on July 21, 2024
[Bugfix] - Zero prefix

from phonenumber.

Comments (3)

BenMorel avatar BenMorel commented on July 21, 2024

Hi, can you please provide the full code sample and expected output?

from phonenumber.

Sammi89 avatar Sammi89 commented on July 21, 2024

Hi, this is my code.

use Brick\PhoneNumber\PhoneNumber;
use Brick\PhoneNumber\PhoneNumberParseException;

[...]

try {
    if (starts_with($phone, '+')) {
        $number = PhoneNumber::parse($phone);
    }
    else {
        $number = PhoneNumber::parse($phone, 'IT');
    }

    $phone = $number->getNationalNumber();
}
catch (PhoneNumberParseException $e) {
    [...]
}

The $phone variable assume the following values:

  • Input: $phone = "+390116511111"
  • Output: $phone === "116511111" instead of $phone === "0116511111"

Thank you for help.

from phonenumber.

BenMorel avatar BenMorel commented on July 21, 2024

Hi, getNationalNumber(), by design, returns the un-prefixed number, without +CountryCode and without leading zero.

What you're looking for is probably formatForCallingFrom():

echo $number->getCountryCode(); // 39
echo $number->getNationalNumber(); // 116511111
echo $number->formatForCallingFrom('IT'); // 011 651 1111

By the way, you don't need to check if $phone starts with +, you can always parse with a country code, it will be ignored if the phone number starts with +.

I'm closing this, please comment if I missed something!

from phonenumber.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.