403Webshell
Server IP : 85.158.181.41  /  Your IP : 216.73.217.12
Web Server : Apache
System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64
User : moncbefd ( 1024)
PHP Version : 7.3.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/moncbefd/www.moneta.at/vendor/mpdf/mpdf/src/Barcode/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/moncbefd/www.moneta.at/vendor/mpdf/mpdf/src/Barcode/AbstractBarcode.php
<?php

namespace Mpdf\Barcode;

abstract class AbstractBarcode
{

	/**
	 * @var mixed[]
	 */
	protected $data;

	/**
	 * @return mixed[]
	 */
	public function getData()
	{
		return $this->data;
	}

	/**
	 * @param string $key
	 *
	 * @return mixed
	 */
	public function getKey($key)
	{
		return isset($this->data[$key]) ? $this->data[$key] : null;
	}

	/**
	 * @return string
	 */
	public function getChecksum()
	{
		return $this->getKey('checkdigit');
	}

	/**
	 * Convert binary barcode sequence to barcode array
	 *
	 * @param string $seq
	 * @param mixed[] $barcodeData
	 *
	 * @return mixed[]
	 */
	protected function binseqToArray($seq, array $barcodeData)
	{
		$len = strlen($seq);
		$w = 0;
		$k = 0;
		for ($i = 0; $i < $len; ++$i) {
			$w += 1;
			if (($i == ($len - 1)) or (($i < ($len - 1)) and ($seq[$i] != $seq[($i + 1)]))) {
				if ($seq[$i] == '1') {
					$t = true; // bar
				} else {
					$t = false; // space
				}
				$barcodeData['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
				$barcodeData['maxw'] += $w;
				++$k;
				$w = 0;
			}
		}
		return $barcodeData;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit