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 MongoTimestamp { /** @var int */ public $sec; /*..

Decoded Output download

<?php

/** @phpstub */
class MongoTimestamp
{
    /** @var int */
    public $sec;

    /** @var int */
    public $inc;

    /**
     * Creates a new timestamp.
     *
     * @param int $sec
     * @param int $inc
     */
    public function __construct($sec = false, $inc = NULL)
    {
    }

    /**
     * Returns a string representation of this timestamp
     *
     * @return string The seconds since epoch represented by this timestamp.
     */
    public function __toString()
    {
    }
} ?>

Did this file decode correctly?

Original Code

<?php

/** @phpstub */
class MongoTimestamp
{
    /** @var int */
    public $sec;

    /** @var int */
    public $inc;

    /**
     * Creates a new timestamp.
     *
     * @param int $sec
     * @param int $inc
     */
    public function __construct($sec = false, $inc = NULL)
    {
    }

    /**
     * Returns a string representation of this timestamp
     *
     * @return string The seconds since epoch represented by this timestamp.
     */
    public function __toString()
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 fc6913b53195f395446c9ccc1d2e7a0a
Eval Count 0
Decode Time 71 ms