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 <?php namespace App\Enums;enum LicenseStatus:string{case Available=base64_decode('YX..
Decoded Output download
<?php <?php namespace App\Enums;enum LicenseStatus:string{case Available=base64_decode('YXZhaWxhYmxl');case Assigned=base64_decode('YXNzaWduZWQ=');case Suspended=base64_decode('c3VzcGVuZGVk');case Revoked=base64_decode('cmV2b2tlZA==');/**
* Get color for the status.
*/ public function color():string{return match($this){self::Available=>base64_decode('c3VjY2Vzcw=='),self::Assigned=>base64_decode('cHJpbWFyeQ=='),self::Suspended=>base64_decode('d2FybmluZw=='),self::Revoked=>base64_decode('ZGFuZ2Vy'),};}}?>
Did this file decode correctly?
Original Code
<?php <?php namespace App\Enums;enum LicenseStatus:string{case Available=base64_decode('YXZhaWxhYmxl');case Assigned=base64_decode('YXNzaWduZWQ=');case Suspended=base64_decode('c3VzcGVuZGVk');case Revoked=base64_decode('cmV2b2tlZA==');/**
* Get color for the status.
*/ public function color():string{return match($this){self::Available=>base64_decode('c3VjY2Vzcw=='),self::Assigned=>base64_decode('cHJpbWFyeQ=='),self::Suspended=>base64_decode('d2FybmluZw=='),self::Revoked=>base64_decode('ZGFuZ2Vy'),};}}?>
Function Calls
None |
Stats
MD5 | 09bc4dc6dff49e1e821a0192baedb268 |
Eval Count | 0 |
Decode Time | 100 ms |