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\Form\Field; use Encore\Admin\Form\Field; class Divider ext..
Decoded Output download
<?php
namespace Encore\Admin\Form\Field;
use Encore\Admin\Form\Field;
class Divider extends Field
{
protected $title;
public function __construct($title = '')
{
$this->title = $title;
}
public function render()
{
if (empty($this->title)) {
return '<hr>';
}
return <<<HTML
<div style="height: 20px; border-bottom: 1px solid #eee; text-align: center;margin-top: 20px;margin-bottom: 20px;">
<span style="font-size: 18px; background-color: #ffffff; padding: 0 10px;">
{$this->title}
</span>
</div>
HTML;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Encore\Admin\Form\Field;
use Encore\Admin\Form\Field;
class Divider extends Field
{
protected $title;
public function __construct($title = '')
{
$this->title = $title;
}
public function render()
{
if (empty($this->title)) {
return '<hr>';
}
return <<<HTML
<div style="height: 20px; border-bottom: 1px solid #eee; text-align: center;margin-top: 20px;margin-bottom: 20px;">
<span style="font-size: 18px; background-color: #ffffff; padding: 0 10px;">
{$this->title}
</span>
</div>
HTML;
}
}
Function Calls
None |
Stats
MD5 | 149f8a1e3bd2f2788a548b2fe7f2024d |
Eval Count | 0 |
Decode Time | 98 ms |