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 Egulias\EmailValidator\Warning; class QuotedString extends Warning { ..

Decoded Output download

<?php

namespace Egulias\EmailValidator\Warning;

class QuotedString extends Warning
{
    public const CODE = 11;

    /**
     * @param string|int $prevToken
     * @param string|int $postToken
     */
    public function __construct($prevToken, $postToken)
    {
        $this->message = "Quoted String found between $prevToken and $postToken";
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Egulias\EmailValidator\Warning;

class QuotedString extends Warning
{
    public const CODE = 11;

    /**
     * @param string|int $prevToken
     * @param string|int $postToken
     */
    public function __construct($prevToken, $postToken)
    {
        $this->message = "Quoted String found between $prevToken and $postToken";
    }
}

Function Calls

None

Variables

None

Stats

MD5 df4ffcd389542f1365712eb9e3f32967
Eval Count 0
Decode Time 108 ms