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 /** * This file is part of the reliforp/reli-prof package. * * (c) sji <sji@sj-i..

Decoded Output download

<?php

/**
 * This file is part of the reliforp/reli-prof package.
 *
 * (c) sji <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Reli\Lib\PhpInternals\Types\Zend\V73;

use Reli\Lib\PhpInternals\Types\Zend\Zval as BaseZval;
use Reli\Lib\Process\Pointer\Dereferencable;

final class Zval extends BaseZval implements Dereferencable
{
    public function __get(string $field_name): mixed
    {
        return match ($field_name) {
            'u1' => $this->u1 = new ZvalU1($this->casted_cdata->casted->u1),
            default => parent::__get($field_name),
        };
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * This file is part of the reliforp/reli-prof package.
 *
 * (c) sji <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Reli\Lib\PhpInternals\Types\Zend\V73;

use Reli\Lib\PhpInternals\Types\Zend\Zval as BaseZval;
use Reli\Lib\Process\Pointer\Dereferencable;

final class Zval extends BaseZval implements Dereferencable
{
    public function __get(string $field_name): mixed
    {
        return match ($field_name) {
            'u1' => $this->u1 = new ZvalU1($this->casted_cdata->casted->u1),
            default => parent::__get($field_name),
        };
    }
}

Function Calls

None

Variables

None

Stats

MD5 6b344fad908a44e5fb7e6523295222bf
Eval Count 0
Decode Time 108 ms