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 /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Soft..

Decoded Output download

<?php
/**
 * @link https://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license https://www.yiiframework.com/license/
 */

namespace yiiunitramework\web;

use yiiase\BaseObject;

/**
 * @inheritdoc
 */
class Post extends BaseObject
{
    /**
     * @var int
     */
    public $id;
    /**
     * @var string
     */
    public $title;

    /**
     * @param int $id
     * @param string $title
     * @param array $config
     */
    public function __construct($id, $title, $config = [])
    {
        $this->id = $id;
        $this->title = $title;

        parent::__construct($config);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * @link https://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license https://www.yiiframework.com/license/
 */

namespace yiiunit\framework\web;

use yii\base\BaseObject;

/**
 * @inheritdoc
 */
class Post extends BaseObject
{
    /**
     * @var int
     */
    public $id;
    /**
     * @var string
     */
    public $title;

    /**
     * @param int $id
     * @param string $title
     * @param array $config
     */
    public function __construct($id, $title, $config = [])
    {
        $this->id = $id;
        $this->title = $title;

        parent::__construct($config);
    }
}

Function Calls

None

Variables

None

Stats

MD5 f1eee279a3127fcef7a19523c93c1290
Eval Count 0
Decode Time 76 ms