This procedure is tested on Mac OS X 10.12.6
PHP 7.2 installed with Homebrew.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
<?php | |
// https://github.com/giggsey/libphonenumber-for-php | |
// composer require giggsey/libphonenumber-for-php | |
require 'vendor/autoload.php'; | |
use libphonenumber\PhoneNumberUtil; | |
use libphonenumber\PhoneNumberType; | |
use libphonenumber\PhoneNumberFormat; | |
$phoneNumber = "0107989480"; | |
$phoneNumberUtil = PhoneNumberUtil::getInstance(); |
This procedure is tested on Mac OS X 10.12.6
PHP 7.2 installed with Homebrew.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon
with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
This gist assumes:
www-data
(may be apache
on other systems)