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\Api; class Error { private ?string $message = null; private array $d..
Decoded Output download
<?php
namespace App\Api; class Error { private ?string $message = null; private array $data = []; public function getMessage() : string { return $this->message; } public function setMessage(string $message) : void { $this->message = $message; } public function getData() : array { return $this->data; } public function setData($key, $value) : void { $this->data[$key] = $value; } }
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Api; class Error { private ?string $message = null; private array $data = []; public function getMessage() : string { return $this->message; } public function setMessage(string $message) : void { $this->message = $message; } public function getData() : array { return $this->data; } public function setData($key, $value) : void { $this->data[$key] = $value; } }
Function Calls
None |
Stats
MD5 | 938292ba28af623d48e146a8547a2d1a |
Eval Count | 0 |
Decode Time | 50 ms |