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 MongoRegex { /** @var string */ public $regex; /..

Decoded Output download

<?php

/** @phpstub */
class MongoRegex
{
    /** @var string */
    public $regex;

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

    /**
     * Creates a new regular expression
     *
     * @param string $regex
     */
    public function __construct($regex)
    {
    }

    /**
     * A string representation of this regular expression
     *
     * @return string This regular expression in the form "/expr/flags".
     */
    public function __toString()
    {
    }
} ?>

Did this file decode correctly?

Original Code

<?php

/** @phpstub */
class MongoRegex
{
    /** @var string */
    public $regex;

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

    /**
     * Creates a new regular expression
     *
     * @param string $regex
     */
    public function __construct($regex)
    {
    }

    /**
     * A string representation of this regular expression
     *
     * @return string This regular expression in the form "/expr/flags".
     */
    public function __toString()
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 9f9849ed2fae482b6aa7222e2e439beb
Eval Count 0
Decode Time 104 ms