Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
composer /
sabre /
xml /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Deserializer
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Element
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Serializer
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
ContextStackTrait.php
3.22
KB
-rw-r--r--
2018-04-19 18:15
Element.php
524
B
-rw-r--r--
2018-04-19 18:15
LibXMLException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
ParseException.php
353
B
-rw-r--r--
2018-04-19 18:15
Reader.php
9.33
KB
-rw-r--r--
2018-04-19 18:15
Service.php
8.93
KB
-rw-r--r--
2018-04-19 18:15
Version.php
344
B
-rw-r--r--
2018-04-19 18:15
Writer.php
7.56
KB
-rw-r--r--
2018-04-19 18:15
XmlDeserializable.php
1.17
KB
-rw-r--r--
2018-04-19 18:15
XmlSerializable.php
1
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php namespace Sabre\Xml; /** * Implementing the XmlDeserializable interface allows you to use a class as a * deserializer for a specific element. * * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/). * @author Evert Pot (http://evertpot.com/) * @license http://sabre.io/license/ Modified BSD License */ interface XmlDeserializable { /** * The deserialize method is called during xml parsing. * * This method is called statically, this is because in theory this method * may be used as a type of constructor, or factory method. * * Often you want to return an instance of the current class, but you are * free to return other data as well. * * You are responsible for advancing the reader to the next element. Not * doing anything will result in a never-ending loop. * * If you just want to skip parsing for this element altogether, you can * just call $reader->next(); * * $reader->parseInnerTree() will parse the entire sub-tree, and advance to * the next element. * * @param Reader $reader * @return mixed */ static function xmlDeserialize(Reader $reader); }