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 /** * File header here * * @author Ralph Schindler <[email protected]> *..

Decoded Output download

<?php

/**
 * File header here
 *
 * @author Ralph Schindler <[email protected]>
 */

namespace LaminasTest\Code\Generator\TestAsset;

/**
 * class docblock
 */
class TestSampleSingleClass
{

    /**
     * Enter description here...
     *
     * @return bool
     */
    public function someMethod()
    {
        /* test test */
    }

    /**
     * Enter description here...
     *
     * @return bool
     */
    protected function withParamsAndReturnType(
        $mixed,
        array $array,
        callable $callable = null,
        ?int $int = 0
    ): bool {
        /* test test */
        return true;
    }

}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * File header here
 *
 * @author Ralph Schindler <[email protected]>
 */

namespace LaminasTest\Code\Generator\TestAsset;

/**
 * class docblock
 */
class TestSampleSingleClass
{

    /**
     * Enter description here...
     *
     * @return bool
     */
    public function someMethod()
    {
        /* test test */
    }

    /**
     * Enter description here...
     *
     * @return bool
     */
    protected function withParamsAndReturnType(
        $mixed,
        array $array,
        callable $callable = null,
        ?int $int = 0
    ): bool {
        /* test test */
        return true;
    }

}

Function Calls

None

Variables

None

Stats

MD5 4af2068a8814e5105401c8dac18815d6
Eval Count 0
Decode Time 121 ms