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 use OpenApi\Annotations as OA; /** * @OA\Info( * title="My First API", * ..
Decoded Output download
<?php
use OpenApi\Annotations as OA;
/**
* @OA\Info(
* title="My First API",
* version="0.1"
* )
*/
class OpenApi
{
}
class MyController
{
/**
* @OA\Get(
* path="/api/data.json",
* @OA\Response(
* response="200",
* description="The data"
* )
* )
*/
public function getResource()
{
// ...
}
}
?>
Did this file decode correctly?
Original Code
<?php
use OpenApi\Annotations as OA;
/**
* @OA\Info(
* title="My First API",
* version="0.1"
* )
*/
class OpenApi
{
}
class MyController
{
/**
* @OA\Get(
* path="/api/data.json",
* @OA\Response(
* response="200",
* description="The data"
* )
* )
*/
public function getResource()
{
// ...
}
}
Function Calls
None |
Stats
MD5 | 89b47200dff46283747231f47a27843d |
Eval Count | 0 |
Decode Time | 94 ms |