%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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/water/vendor/fzaninotto/faker/src/Faker/Provider/ar_SA/ |
Upload File : |
<?php namespace Faker\Provider\ar_SA; class Internet extends \Faker\Provider\Internet { protected static $userNameFormats = array( '{{lastNameAscii}}.{{firstNameAscii}}', '{{firstNameAscii}}.{{lastNameAscii}}', '{{firstNameAscii}}##', '?{{lastNameAscii}}', ); protected static $safeEmailTld = array( 'com', 'jo', 'me', 'net', 'org', ); protected static $tld = array( 'biz', 'com', 'info', 'sa', 'net', 'org', ); protected static $lastNameAscii = array( 'abbad', 'abbadi', 'abbas', 'abulebbeh', 'flefel', 'hadi', 'hamad', 'hasan', 'jabri', 'kanaan', 'karam', 'maanee', 'melhem', 'nimry', 'obaisi', 'qasem', 'qawasmee', 'rabee', 'rashwani', 'shami', 'zaloum', ); protected static $firstNameAscii = array( 'abd', 'abdullah', 'ahmad', 'akram', 'amr', 'bashar', 'bilal', 'fadi', 'ibrahim', 'khaled', 'layth', 'mohammad', 'mutaz', 'omar', 'osama', 'rami', 'saleem', 'samer', 'sami', 'yazan', ); public static function lastNameAscii() { return static::randomElement(static::$lastNameAscii); } public static function firstNameAscii() { return static::randomElement(static::$firstNameAscii); } /** * @example 'ahmad.abbadi' */ public function userName() { $format = static::randomElement(static::$userNameFormats); return static::bothify($this->generator->parse($format)); } /** * @example 'wewebit.jo' */ public function domainName() { return static::randomElement(static::$lastNameAscii) . '.' . $this->tld(); } }