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 declare(strict_types=1); namespace App; use Illuminate\Support\Str; class Import..
Decoded Output download
<?php
declare(strict_types=1);
namespace App;
use Illuminate\Support\Str;
class Importer
{
/** @var bool */
public $isImported;
public function isImported(): bool
{
return random_int(0, 1) > 0;
}
public function import(): bool
{
return random_int(0, 1) > 0;
}
public function getKey(): string
{
return Str::random(5);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace App;
use Illuminate\Support\Str;
class Importer
{
/** @var bool */
public $isImported;
public function isImported(): bool
{
return random_int(0, 1) > 0;
}
public function import(): bool
{
return random_int(0, 1) > 0;
}
public function getKey(): string
{
return Str::random(5);
}
}
Function Calls
| None |
Stats
| MD5 | 377f5aa7ce565166b69646cc941e5973 |
| Eval Count | 0 |
| Decode Time | 88 ms |