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 //issue #6620 require_once 'TestTraitClass2.php'; class FooClass { use TestTrait; ..
Decoded Output download
<?php
//issue #6620
require_once 'TestTraitClass2.php';
class FooClass
{
use TestTrait;
/**
* @var bool
*/
protected static $other = false;
/**
* Constructor
*
* @param bool $other
*/
public function __construct($other)
{
$this->other = $other;
}
}
?>
Did this file decode correctly?
Original Code
<?php
//issue #6620
require_once 'TestTraitClass2.php';
class FooClass
{
use TestTrait;
/**
* @var bool
*/
protected static $other = false;
/**
* Constructor
*
* @param bool $other
*/
public function __construct($other)
{
$this->other = $other;
}
}
Function Calls
| None |
Stats
| MD5 | ada56dec32cdd0d34f355523ffaa7ffa |
| Eval Count | 0 |
| Decode Time | 123 ms |