!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_tdfonline/php/3ros/shindig/external/Zend/Feed/Entry/   drwxr-xr-x
Free 13.8 GB of 61.93 GB (22.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Abstract.php (3.63 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category   Zend
 * @package    Zend_Feed
 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: Abstract.php 8064 2008-02-16 10:58:39Z thomas $
 */

/**
 * @see Zend_Feed
 */
require_once 'external/Zend/Feed.php';

/**
 * @see Zend_Feed_Element
 */
require_once 'external/Zend/Feed/Element.php';

/**
 * Zend_Feed_Entry_Abstract represents a single entry in an Atom or RSS
 * feed.
 *
 * @category   Zend
 * @package    Zend_Feed
 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 */
abstract class Zend_Feed_Entry_Abstract extends Zend_Feed_Element {
  
/**
   * Root XML element for entries. Subclasses must define this to a
   * non-null value.
   *
   * @var string
   */
  
protected $_rootElement;
  
  
/**
   * Root namespace for entries. Subclasses may define this to a
   * non-null value.
   *
   * @var string
   */
  
protected $_rootNamespace null;

  
/**
   * Zend_Feed_Entry_Abstract constructor
   *
   * The Zend_Feed_Entry_Abstract constructor takes the URI of the feed the entry
   * is part of, and optionally an XML construct (usually a
   * SimpleXMLElement, but it can be an XML string or a DOMNode as
   * well) that contains the contents of the entry.
   *
   * @param  string $uri
   * @param  SimpleXMLElement|DOMNode|string  $element
   * @return void
   * @throws Zend_Feed_Exception
   */
  
public function __construct($uri null$element null) {
    if (! (
$element instanceof DOMElement)) {
      if (
$element) {
        
// Load the feed as an XML DOMDocument object
        
@ini_set('track_errors'1);
        
$doc = @DOMDocument::loadXML($element);
        @
ini_restore('track_errors');
        
        if (! 
$doc) {
          
// prevent the class to generate an undefined variable notice (ZF-2590)
          
if (! isset($php_errormsg)) {
            if (
function_exists('xdebug_is_enabled')) {
              
$php_errormsg '(error message not available, when XDebug is running)';
            } else {
              
$php_errormsg '(error message not available)';
            }
          }
          
          
/** 
           * @see Zend_Feed_Exception
           */
          
require_once 'external/Zend/Feed/Exception.php';
          throw new 
Zend_Feed_Exception("DOMDocument cannot parse XML: $php_errormsg");
        }
        
        
$element $doc->getElementsByTagName($this->_rootElement)->item(0);
        if (! 
$element) {
          
/** 
           * @see Zend_Feed_Exception
           */
          
require_once 'external/Zend/Feed/Exception.php';
          throw new 
Zend_Feed_Exception('No root <' $this->_rootElement '> element found, cannot parse feed.');
        }
      } else {
        
$doc = new DOMDocument('1.0''utf-8');
        if (
$this->_rootNamespace !== null) {
          
$element $doc->createElementNS(Zend_Feed::lookupNamespace($this->_rootNamespace), $this->_rootElement);
        } else {
          
$element $doc->createElement($this->_rootElement);
        }
      }
    }
    
    
parent::__construct($element);
  }

}

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