!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/zendframework/zend-validator/src/Barcode/   drwxrwxr-x
Free 15.64 GB of 61.93 GB (25.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Code39.php (1.76 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\Validator\Barcode;

class 
Code39 extends AbstractAdapter
{
    
/**
     * @var array
     */
    
protected $check = array(
        
'0' =>  0'1' =>  1'2' =>  2'3' =>  3'4' =>  4'5' =>  5'6' =>  6,
        
'7' =>  7'8' =>  8'9' =>  9'A' => 10'B' => 11'C' => 12'D' => 13,
        
'E' => 14'F' => 15'G' => 16'H' => 17'I' => 18'J' => 19'K' => 20,
        
'L' => 21'M' => 22'N' => 23'O' => 24'P' => 25'Q' => 26'R' => 27,
        
'S' => 28'T' => 29'U' => 30'V' => 31'W' => 32'X' => 33'Y' => 34,
        
'Z' => 35'-' => 36'.' => 37' ' => 38'$' => 39'/' => 40'+' => 41,
        
'%' => 42,
    );

    
/**
     * Constructor for this barcode adapter
     */
    
public function __construct()
    {
        
$this->setLength(-1);
        
$this->setCharacters('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -.$/+%');
        
$this->setChecksum('code39');
        
$this->useChecksum(false);
    }

    
/**
     * Validates the checksum (Modulo 43)
     *
     * @param  string $value The barcode to validate
     * @return bool
     */
    
protected function code39($value)
    {
        
$checksum substr($value, -11);
        
$value    str_split(substr($value0, -1));
        
$count    0;
        foreach (
$value as $char) {
            
$count += $this->check[$char];
        }

        
$mod $count 43;
        if (
$mod == $this->check[$checksum]) {
            return 
true;
        }

        return 
false;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.2793 ]--