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 App\Traits; trait Owners { public function isOwnable() { ..
Decoded Output download
<?php
namespace App\Traits;
trait Owners
{
public function isOwnable()
{
$ownable = $this->ownable ?: true;
return ($ownable === true) && in_array('created_by', $this->getFillable());
}
public function isNotOwnable()
{
return !$this->isOwnable();
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Traits;
trait Owners
{
public function isOwnable()
{
$ownable = $this->ownable ?: true;
return ($ownable === true) && in_array('created_by', $this->getFillable());
}
public function isNotOwnable()
{
return !$this->isOwnable();
}
}
Function Calls
None |
Stats
MD5 | e1f39b5676a2f22db22e5b6dbcf8ae2f |
Eval Count | 0 |
Decode Time | 90 ms |