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 Encore\Admin\Grid\Displayers; class Prefix extends AbstractDisplayer { ..
Decoded Output download
<?php
namespace Encore\Admin\Grid\Displayers;
class Prefix extends AbstractDisplayer
{
public function display($prefix = null, $delimiter = ' ')
{
if ($prefix instanceof \Closure) {
$prefix = $prefix->call($this->row, $this->getValue(), $this->getColumn()->getOriginal());
}
return <<<HTML
{$prefix}{$delimiter}{$this->getValue()}
HTML;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Encore\Admin\Grid\Displayers;
class Prefix extends AbstractDisplayer
{
public function display($prefix = null, $delimiter = ' ')
{
if ($prefix instanceof \Closure) {
$prefix = $prefix->call($this->row, $this->getValue(), $this->getColumn()->getOriginal());
}
return <<<HTML
{$prefix}{$delimiter}{$this->getValue()}
HTML;
}
}
Function Calls
None |
Stats
MD5 | ce86da6a691bbe935af95544632f8323 |
Eval Count | 0 |
Decode Time | 83 ms |