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 /** * Class MetaUser */ class MetaUser extends Timber\User { /** * Publi..

Decoded Output download

<?php

/**
 * Class MetaUser
 */
class MetaUser extends Timber\User
{
    /**
     * Public property.
     *
     * @var string
     */
    public $public_property = 'I am a public property';

    /**
     * Protected property.
     *
     * @var string
     */
    protected $protected_property = 'I am a protected property';

    /**
     * Public method.
     *
     * @return string
     */
    public function public_method()
    {
        return 'I am a public method';
    }

    /**
     * Public method with required arguments.
     *
     * @param mixed $arg1 A required argument.
     *
     * @return string
     */
    public function public_method_with_args($arg1)
    {
        return 'I am a public method';
    }

    /**
     * Protected method.
     *
     * @return string
     */
    protected function protected_method()
    {
        return 'I am a protected method';
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Class MetaUser
 */
class MetaUser extends Timber\User
{
    /**
     * Public property.
     *
     * @var string
     */
    public $public_property = 'I am a public property';

    /**
     * Protected property.
     *
     * @var string
     */
    protected $protected_property = 'I am a protected property';

    /**
     * Public method.
     *
     * @return string
     */
    public function public_method()
    {
        return 'I am a public method';
    }

    /**
     * Public method with required arguments.
     *
     * @param mixed $arg1 A required argument.
     *
     * @return string
     */
    public function public_method_with_args($arg1)
    {
        return 'I am a public method';
    }

    /**
     * Protected method.
     *
     * @return string
     */
    protected function protected_method()
    {
        return 'I am a protected method';
    }
}

Function Calls

None

Variables

None

Stats

MD5 67a3ddbd55b1f87f744f221454532be8
Eval Count 0
Decode Time 95 ms