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\datar;
/**
* Class Animal.
*
* @author Jose Lorente <[email protected]>
* @property int $id
* @property string $type
*/
class Animal extends ActiveRecord
{
public $does;
public static function tableName()
{
return 'animal';
}
public function init()
{
parent::init();
$this->type = \get_called_class();
}
public function getDoes()
{
return $this->does;
}
/**
* @param type $row
* @return \yiiunit\datar\Animal
*/
public static function instantiate($row)
{
$class = $row['type'];
return new $class();
}
}
?>
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\data\ar;
/**
* Class Animal.
*
* @author Jose Lorente <[email protected]>
* @property int $id
* @property string $type
*/
class Animal extends ActiveRecord
{
public $does;
public static function tableName()
{
return 'animal';
}
public function init()
{
parent::init();
$this->type = \get_called_class();
}
public function getDoes()
{
return $this->does;
}
/**
* @param type $row
* @return \yiiunit\data\ar\Animal
*/
public static function instantiate($row)
{
$class = $row['type'];
return new $class();
}
}
Function Calls
None |
Stats
MD5 | 032bbc8da59d869b2fd2ccf58822491d |
Eval Count | 0 |
Decode Time | 112 ms |