Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** @phpstub */ class DOMCharacterData extends \DOMNode { /** @var int */ p..

Decoded Output download

<?php

/** @phpstub */
class DOMCharacterData extends \DOMNode
{
    /** @var int */
    public $length;

    /** @var string */
    public $data;

    /**
     * 
       Append the string to the end of the character data of the node
      
     *
     * @param string $data
     *
     * @return void 
     */
    public function appendData($data)
    {
    }

    /**
     * 
       Remove a range of characters from the node
      
     *
     * @param int $offset
     * @param int $count
     *
     * @return void 
     */
    public function deleteData($offset, $count)
    {
    }

    /**
     * 
       Insert a string at the specified 16-bit unit offset
      
     *
     * @param int $offset
     * @param string $data
     *
     * @return void 
     */
    public function insertData($offset, $data)
    {
    }

    /**
     * 
       Replace a substring within the DOMCharacterData node
      
     *
     * @param int $offset
     * @param int $count
     * @param string $data
     *
     * @return void 
     */
    public function replaceData($offset, $count, $data)
    {
    }

    /**
     * 
       Extracts a range of data from the node
      
     *
     * @param int $offset
     * @param int $count
     *
     * @return string The specified substring. If the sum of
     *                and  exceeds the length, then all 16-bit units
     *                to the end of the data are returned.
     */
    public function substringData($offset, $count)
    {
    }
} ?>

Did this file decode correctly?

Original Code

<?php

/** @phpstub */
class DOMCharacterData extends \DOMNode
{
    /** @var int */
    public $length;

    /** @var string */
    public $data;

    /**
     * 
       Append the string to the end of the character data of the node
      
     *
     * @param string $data
     *
     * @return void 
     */
    public function appendData($data)
    {
    }

    /**
     * 
       Remove a range of characters from the node
      
     *
     * @param int $offset
     * @param int $count
     *
     * @return void 
     */
    public function deleteData($offset, $count)
    {
    }

    /**
     * 
       Insert a string at the specified 16-bit unit offset
      
     *
     * @param int $offset
     * @param string $data
     *
     * @return void 
     */
    public function insertData($offset, $data)
    {
    }

    /**
     * 
       Replace a substring within the DOMCharacterData node
      
     *
     * @param int $offset
     * @param int $count
     * @param string $data
     *
     * @return void 
     */
    public function replaceData($offset, $count, $data)
    {
    }

    /**
     * 
       Extracts a range of data from the node
      
     *
     * @param int $offset
     * @param int $count
     *
     * @return string The specified substring. If the sum of
     *                and  exceeds the length, then all 16-bit units
     *                to the end of the data are returned.
     */
    public function substringData($offset, $count)
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 78e1bbd754941a918c14aaf7bb1b3781
Eval Count 0
Decode Time 91 ms