Uname:
Linux yisu-647059427c03a 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
Software:
nginx/1.22.1
PHP version:
7.3.31 [ PHP INFO ] PHP os:
Linux
Server Ip:
103.146.158.90
Your Ip:
216.73.216.141
User:
www (1000) | Group:
www (1000)
Safe Mode:
OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
<?php
namespace Faker\Provider\ka_GE;
class Payment extends \Faker\Provider\Payment
{
/**
* @see list of Georgian banks (2015-12-26), source: https://www.nbg.gov.ge/index.php?m=403
*/
protected static $banks = [
'ბანკი რესპუბლიკა',
'თიბისი ბანკი',
'საქართველოს ბანკი',
'ლიბერთი ბანკი',
'ბაზისბანკი',
'ვითიბი ბანკი ჯორჯია',
'ბანკი ქართუ',
'პროკრედიტ ბანკი',
'სილქ როუდ ბანკი ',
'კაპიტალ ბანკი ',
'აზერბაიჯანის საერთაშორისო ბანკი - საქართველო ',
'ზირაათ ბანკის თბილისის ფილიალი ',
'კავკასიის განვითარების ბანკი - საქართველო',
'იშ ბანკი საქართველო',
'პროგრეს ბანკი',
'კორ სტანდარტ ბანკი',
'ხალიკ ბანკი საქართველო ',
'პაშა ბანკი საქართველო',
'ფინკა ბანკი საქართველო',
];
/**
* @example 'თიბისი ბანკი'
*/
public static function bank()
{
return static::randomElement(static::$banks);
}
/**
* International Bank Account Number (IBAN)
*
* @see http://en.wikipedia.org/wiki/International_Bank_Account_Number
*
* @param string $prefix for generating bank account number of a specific bank
* @param string $countryCode ISO 3166-1 alpha-2 country code
* @param int $length total length without country code and 2 check digits
*
* @return string
*/
public static function bankAccountNumber($prefix = '', $countryCode = 'GE', $length = null)
{
return static::iban($countryCode, $prefix, $length);
}
}