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 namespace Pagekit\Routing\Annotation; /** * @Annotation */ class Request { p..
Decoded Output download
<?php
namespace Pagekit\Routing\Annotation;
/**
* @Annotation
*/
class Request
{
public $data;
/**
* Constructor.
*
* @param array $data
*/
public function __construct(array $data)
{
$this->data = $data;
}
/**
* Returns the data.
*
* @return array
*/
public function getData()
{
return $this->data;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Routing\Annotation;
/**
* @Annotation
*/
class Request
{
public $data;
/**
* Constructor.
*
* @param array $data
*/
public function __construct(array $data)
{
$this->data = $data;
}
/**
* Returns the data.
*
* @return array
*/
public function getData()
{
return $this->data;
}
}
Function Calls
None |
Stats
MD5 | b6cb12d1afca249e8a2e1b8f667ccd10 |
Eval Count | 0 |
Decode Time | 78 ms |