⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Xml
/
Wbxml
/
View File Name :
ContentHandler.php
* @package Xml_Wbxml */ class Horde_Xml_Wbxml_ContentHandler { protected $_currentUri; protected $_output = ''; protected $_opaqueHandler; /** * Charset. */ protected $_charset = 'UTF-8'; /** * WBXML Version. * 1, 2, or 3 supported */ protected $_wbxmlVersion = 2; public function __construct() { $this->_currentUri = new Horde_Xml_Wbxml_LifoQueue(); } public function getCharsetStr() { return $this->_charset; } public function setCharset($cs) { $this->_charset = $cs; } public function getVersion() { return $this->_wbxmlVersion; } public function setVersion($v) { $this->_wbxmlVersion = 2; } public function getOutput() { return $this->_output; } public function getOutputSize() { return strlen($this->_output); } public function startElement($uri, $element, $attrs = array()) { $this->_output .= '<' . $element; $currentUri = $this->_currentUri->top(); if (((!$currentUri) || ($currentUri != $uri)) && $uri) { $this->_output .= ' xmlns="' . $uri . '"'; } $this->_currentUri->push($uri); foreach ($attrs as $attr) { $this->_output .= ' ' . $attr['attribute'] . '="' . $attr['value'] . '"'; } $this->_output .= '>'; } public function endElement($uri, $element) { $this->_output .= '' . $element . '>'; $this->_currentUri->pop(); } public function characters($str) { $this->_output .= htmlspecialchars($str); } public function opaque($o) { $this->_output .= $o; } public function setOpaqueHandler($opaqueHandler) { $this->_opaqueHandler = $opaqueHandler; } public function removeOpaqueHandler() { unset($this->_opaqueHandler); } public function createSubHandler() { $name = get_class($this); // clone current class $sh = new $name(); $sh->setCharset($this->getCharsetStr()); $sh->setVersion($this->getVersion()); return $sh; } }