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 JetBrains\PhpStorm; use Attribute; /** * Specifies that the parameter ..
Decoded Output download
<?php
namespace JetBrains\PhpStorm;
use Attribute;
/**
* Specifies that the parameter is a string that represents source code in a different language.
* An IDE will automatically inject the specified language into the passed string literals.
*
* @since 8.0
*/
#[Attribute(Attribute::TARGET_PARAMETER)]
class Language
{
/**
* @param string $languageName Language name like "PHP", "SQL", "RegExp", etc...
*/
public function __construct(string $languageName) {}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace JetBrains\PhpStorm;
use Attribute;
/**
* Specifies that the parameter is a string that represents source code in a different language.
* An IDE will automatically inject the specified language into the passed string literals.
*
* @since 8.0
*/
#[Attribute(Attribute::TARGET_PARAMETER)]
class Language
{
/**
* @param string $languageName Language name like "PHP", "SQL", "RegExp", etc...
*/
public function __construct(string $languageName) {}
}
Function Calls
None |
Stats
MD5 | e57591447cfea8a909f4f981e3d07b16 |
Eval Count | 0 |
Decode Time | 114 ms |