Proven Expertise
Our team brings years of experience in the digital payments industry to provide reliable services.
<?php
namespace Faker\Provider\el_GR;
/**
* @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Greece
* @see https://github.com/giggsey/libphonenumber-for-php/blob/master/src/data/PhoneNumberMetadata_GR.php
*/
class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $internationalCallPrefixes = ['', '+30'];
protected static $formats = [
'{{fixedLineNumber}}',
'{{mobileNumber}}',
'{{personalNumber}}',
'{{tollFreeNumber}}',
'{{sharedCostNumber}}',
'{{premiumRateNumber}}',
];
protected static $areaCodes = [
// Zone 22: Central Greece and the Aegean Islands
2221, 2222, 2223, 2224, 2226, 2227, 2228, 2229,
2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238,
2241, 2242, 2243, 2244, 2245, 2246, 2247,
2251, 2252, 2253, 2254,
2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268,
2271, 2272, 2273, 2274, 2275,
2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289,
2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299,
// Zone 23: Central Macedonia and Florina
231,
2321, 2322, 2323, 2324, 2325, 2327,
2331, 2332, 2333,
2341, 2343,
2351, 2352, 2353,
2371, 2372, 2373, 2374, 2375, 2376, 2377,
2381, 2382, 2384, 2385, 2386,
2391, 2392, 2393, 2394, 2395, 2396, 2397, 2399,
// Zone 24: Thessaly and West Macedonia (excluding Florina)
241,
2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428,
2431, 2432, 2433, 2434,
2441, 2443, 2444, 2445,
2461, 2462, 2463, 2464, 2465, 2467, 2468,
2491, 2492, 2493, 2494, 2495,
// Zone 25: East Macedonia and Thrace
251,
2521, 2522, 2523, 2524,
2531, 2532, 2533, 2534, 2535,
2541, 2542, 2544,
2591, 2592, 2593, 2594,
2551, 2552, 2553, 2554, 2555, 2556,
// Zone 26: West Greece, Ionian Island and Epirus
261,
2621, 2622, 2623, 2624, 2625, 2626,
2631, 2632, 2634, 2635,
2661, 2662, 2663, 2664, 2665, 2666,
2691, 2692, 2693, 2694, 2695, 2696,
2641, 2642, 2643, 2644, 2645, 2646, 2647,
2651, 2653, 2654, 2655, 2656, 2657, 2658, 2659,
2671, 2674,
2681, 2682, 2683, 2684, 2685,
// Zone 27: Peloponnese and Kythera
271,
2721, 2722, 2723, 2724, 2725,
2731, 2732, 2733, 2734, 2735, 2736,
2741, 2742, 2743, 2744, 2745, 2746, 2747,
2751, 2752, 2753, 2754, 2755, 2757,
2761, 2763, 2765,
2791, 2792, 2795, 2797,
// Zone 28: Crete
281,
2821, 2822, 2823, 2824, 2825,
2831, 2832, 2833, 2834,
2841, 2842, 2843, 2844,
2891, 2892, 2893, 2894, 2895, 2897,
];
protected static $fixedLineFormats = [
'{{internationalCodePrefix}}21########',
'{{internationalCodePrefix}} 21# ### ####',
'{{internationalCodePrefix}}{{areaCode}}######',
'{{internationalCodePrefix}} {{areaCode}} ######',
];
protected static $mobileCodes = [
685, 687, 688, 689,
690, 691, 693, 694, 695, 696, 697, 698, 699,
];
protected static $mobileFormats = [
'{{internationalCodePrefix}}{{mobileCode}}#######',
'{{internationalCodePrefix}} {{mobileCode}} ### ####',
];
protected static $personalFormats = [
'{{internationalCodePrefix}}70########',
'{{internationalCodePrefix}} 70 #### ####',
];
protected static $tollFreeFormats = [
'{{internationalCodePrefix}}800#######',
'{{internationalCodePrefix}} 800 ### ####',
];
protected static $sharedCostCodes = [801, 806, 812, 825, 850, 875];
protected static $sharedCostFormats = [
'{{internationalCodePrefix}}{{sharedCostCode}}#######',
'{{internationalCodePrefix}} {{sharedCostCode}} ### ####',
];
protected static $premiumRateCodes = [901, 909];
protected static $premiumRateFormats = [
'{{internationalCodePrefix}}{{premiumRateCode}}#######',
'{{internationalCodePrefix}} {{premiumRateCode}} ### ####',
];
/**
* Generate a country calling code prefix.
*
* @example Prefix an empty string: ''
* @example Prefix the country calling code: '+30'
*
* @internal Used to generate phone numbers with or without prefixes.
*
* @return string
*/
public static function internationalCodePrefix()
{
return static::randomElement(static::$internationalCallPrefixes);
}
/**
* Generate an area code for a fixed line number.
*
* Doesn't include codes for Greater Athens Metropolitan Area (21#) because
* this zone uses 3 digits, and phone numbers have a different formatting.
*
* Area codes in all the other zones use 4 digits.
* The capital of each zone uses 3 digits and the 4th digit can be any number.
* The other areas in each zone use 4 digits, but not every number is valid for the 4th digit.
*
* @example Thessaloniki has code '231', so '2310' and '2313' are valid.
* @example Serres has code '232', but '2326', '2328' and '2329' are not valid.
*
* @return string
*/
public static function areaCode()
{
return static::numerify(
str_pad(static::randomElement(static::$areaCodes), 4, '#'),
);
}
/**
* Generate a fixed line number.
*
* Numbers can be generated with or without the international code prefix.
* Numbers can be generated with or without spaces between their parts.
* Numbers in Athens use a 3-digit area code, and can be formatted as 21# ### ####.
* Numbers in other areas use a 4-digit area code, and can be formatted as 2### ### ###.
*
* @example A number in Athens: '2101234567'
* @example A number in Thessaloniki: '2310123456'
* @example A number with spaces in Athens: '210 123 4567'
* @example A number with spaces in Thessaloniki: '2310 123 456'
* @example A number with international code prefix: '+302101234567'
* @example A number with international code prefix and spaces: '+30 2310 123 456'
*
* @return string
*/
public function fixedLineNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$fixedLineFormats),
)));
}
/**
* Generate a code for a mobile number.
*
* @internal Used to generate mobile numbers.
*
* @return string
*/
public static function mobileCode()
{
return static::randomElement(static::$mobileCodes);
}
/**
* Generate a mobile number.
*
* @example A mobile number: '6901234567'
* @example A mobile number with spaces: '690 123 4567'
* @example A mobile number with international code prefix: '+306901234567'
* @example A mobile number with international code prefix and spaces: '+30 690 123 4567'
*
* @return string
*/
public function mobileNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$mobileFormats),
)));
}
/**
* @deprecated Use PhoneNumber::mobileNumber() instead.
*/
public static function mobilePhoneNumber()
{
return static::numerify(
strtr(static::randomElement(static::$mobileFormats), [
'{{internationalCodePrefix}}' => static::internationalCodePrefix(),
'{{mobileCode}}' => static::mobileCode(),
]),
);
}
/**
* Generate a personal number.
*
* @example A personal number: '7012345678'
* @example A personal number with spaces: '70 1234 5678'
* @example A personal number with international code prefix: '+307012345678'
* @example A personal number with international code prefix and spaces: '+30 70 1234 5678'
*
* @return string
*/
public function personalNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$personalFormats),
)));
}
/**
* Generate a toll-free number.
*
* @example A toll-free number: '8001234567'
* @example A toll-free number with spaces: '800 123 4567'
* @example A toll-free number with international code prefix: '+308001234567'
* @example A toll-free number with international code prefix and spaces: '+30 800 123 4567'
*
* @return string
*/
public static function tollFreeNumber()
{
return ltrim(static::numerify(
strtr(static::randomElement(static::$tollFreeFormats), [
'{{internationalCodePrefix}}' => static::internationalCodePrefix(),
]),
));
}
/**
* Generate a code for a shared-cost number.
*
* @internal Used to generate shared-cost numbers.
*
* @return string
*/
public static function sharedCostCode()
{
return static::randomElement(static::$sharedCostCodes);
}
/**
* Generate a shared-cost number.
*
* @example A shared-cost number: '8011234567'
* @example A shared-cost number with spaces: '801 123 4567'
* @example A shared-cost number with international code prefix: '+308011234567'
* @example A shared-cost number with international code prefix and spaces: '+30 801 123 4567'
*
* @return string
*/
public function sharedCostNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$sharedCostFormats),
)));
}
/**
* Generate a code for a premium-rate number.
*
* @internal Used to generate premium-rate numbers.
*
* @return string
*/
public static function premiumRateCode()
{
return static::randomElement(static::$premiumRateCodes);
}
/**
* Generate a premium-rate number.
*
* @example A premium-rate number: '9011234567'
* @example A premium-rate number with spaces: '901 123 4567'
* @example A premium-rate number with international code prefix: '+309011234567'
* @example A premium-rate number with international code prefix and spaces: '+30 901 123 4567'
*
* @return string
*/
public function premiumRateNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$premiumRateFormats),
)));
}
}
How it Works
Getting started with NFC Pay is simple and quick. Register your account, add your cards, and you're ready to make payments in no time. Whether you're paying at a store, sending money to a friend, or managing your merchant transactions, NFC Pay makes it easy and secure.
Download the NFC Pay app and sign up with your email or phone number. Complete the registration process by verifying your identity, and set up your secure PIN to protect your account.
Link your debit or credit cards to your NFC Pay wallet. Simply scan your card or enter the details manually, and you’re set to load funds, shop, and pay with ease.
To pay, simply tap your phone or scan the QR code at checkout. You can also transfer money to other users with a few taps. Enjoy fast, contactless payments with top-notch security.
Security System
NFC Pay prioritizes your security with advanced features that safeguard every transaction. From SMS or email verification to end-to-end encryption, we've implemented robust measures to ensure your data is always protected. Our security systems are designed to prevent unauthorized access and provide you with a safe and reliable payment experience.
Receive instant alerts for every transaction to keep track of your account activities.
Verify your identity through our Know Your Customer process to prevent fraud and enhance security.
Dramatically supply transparent backward deliverables before caward comp internal or "organic" sources.
All your data and transactions are encrypted, ensuring that your sensitive information remains private.
Monitor unusual activity patterns to detect and prevent suspicious behavior in real-time.
Why Choice Us
With NFC Pay, you get a trusted platform backed by proven expertise and a commitment to quality. We put our customers first, offering innovative solutions tailored to your needs, ensuring every transaction is secure, swift, and seamless.
Our team brings years of experience in the digital payments industry to provide reliable services.
We prioritize excellence, ensuring that every aspect of our platform meets the highest standards.
Your needs drive our solutions, and we are dedicated to delivering a superior user experience.
We continuously evolve, integrating the latest technologies to enhance your payment experience.
Testimonial Section
Hear from our users who trust NFC Pay for their everyday transactions. Our commitment to security, ease of use, and exceptional service shines through in their experiences. See why our clients choose NFC Pay for their payment needs and how it has transformed the way they manage their finances.
App Section
Unlock the full potential of NFC Pay by downloading our app, designed to bring secure, swift, and smart transactions to your fingertips. Whether you're paying at a store, transferring money to friends, or managing your business payments, the NFC Pay app makes it effortless. Available on both iOS and Android, it's your all-in-one solution for convenient and reliable digital payments. Download now and experience the future of payments!