403Webshell
Server IP : 172.67.158.161  /  Your IP : 3.142.250.247
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries//XmlImportStringReader.php
<?php
/**
 * @author Olexandr Zanichkovsky <[email protected]>
 * @package General
 */

require_once dirname(__FILE__) . '/XmlImportReaderInterface.php';

/**
 * Allows to either peek or read a character from a string buffer
 */
class XmlImportStringReader implements XmlImportReaderInterface
{
  /**
   * String buffer
   *
   * @var string
   */
  private $buffer;

  /**
   * Current index
   *
   * @var int
   */
  private $index = -1;

  /**
   * Creates new instance
   *
   * @param string $input
   */
  public function __construct($input)
  {
    if (is_string($input))
      $this->buffer = $input;
    else
      throw new InvalidArgumentException("String expected as argument.");
  }

  /**
   * Returns the next symbol from the buffer without changes to current index
   * or false if buffer ends
   *
   * @return string
   */
  public function peek()
  {
    if ($this->index + 1 >= strlen($this->buffer))
      return false;
    else
      return $this->buffer[$this->index + 1];
  }

  /**
   * Returns the next symbol from the buffer or false if buffer is ended
   *
   * @return string
   */
  public function read()
  {
    $result = $this->peek();
    if ($this->index < strlen($this->buffer))
      $this->index++;
    return $result;
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit