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 yiiunitramework\console\controllers;
use yii\console\controllers\MigrateController;
/**
* MigrateController that writes output via echo instead of using output stream. Allows us to buffer it.
*/
class EchoMigrateController extends MigrateController
{
/**
* {@inheritdoc}
*/
public function stdout($string)
{
echo $string;
}
}
?>
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\console\controllers;
use yii\console\controllers\MigrateController;
/**
* MigrateController that writes output via echo instead of using output stream. Allows us to buffer it.
*/
class EchoMigrateController extends MigrateController
{
/**
* {@inheritdoc}
*/
public function stdout($string)
{
echo $string;
}
}
Function Calls
None |
Stats
MD5 | 08d3dc8e30d397549bf2a3250839577a |
Eval Count | 0 |
Decode Time | 82 ms |