%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.110 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/fzaninotto/faker/test/Faker/Provider/en_SG/ |
Upload File : |
<?php namespace Faker\Test\Provider\en_SG; use Faker\Factory; use Faker\Provider\en_SG\PhoneNumber; use PHPUnit\Framework\TestCase; class PhoneNumberTest extends TestCase { private $faker; public function setUp() { $this->faker = Factory::create('en_SG'); $this->faker->seed(1); $this->faker->addProvider(new PhoneNumber($this->faker)); } // http://en.wikipedia.org/wiki/Telephone_numbers_in_Singapore#Numbering_plan // y means 0 to 8 only // x means 0 to 9 public function testMobilePhoneNumberStartWith9Returns9yxxxxxx() { $startsWith9 = false; while (!$startsWith9) { $mobileNumber = $this->faker->mobileNumber(); $startsWith9 = preg_match('/^(\+65|65)?\s*9/', $mobileNumber); } $this->assertRegExp('/^(\+65|65)?\s*9\s*[0-8]{3}\s*\d{4}$/', $mobileNumber); } // http://en.wikipedia.org/wiki/Telephone_numbers_in_Singapore#Numbering_plan // z means 1 to 9 only // x means 0 to 9 public function testMobilePhoneNumberStartWith7Or8Returns7Or8zxxxxxx() { $startsWith7Or8 = false; while (!$startsWith7Or8) { $mobileNumber = $this->faker->mobileNumber(); $startsWith7Or8 = preg_match('/^(\+65|65)?\s*[7-8]/', $mobileNumber); } $this->assertRegExp('/^(\+65|65)?\s*[7-8]\s*[1-9]{3}\s*\d{4}$/', $mobileNumber); } }