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 Vendor\Package; class Foo { public function testStringImplicitBacksl..

Decoded Output download

<?php

namespace Vendor\Package;

class Foo
{
    public function testStringImplicitBackslashes($a = 'a'): string
    {
        return 'a'
            .$a
            ."
\a\b";
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Vendor\Package;

class Foo
{
    public function testStringImplicitBackslashes($a = 'a\b'): string
    {
        return 'a\b'
            .$a
            ."\n\\a\\b";
    }
}

Function Calls

None

Variables

None

Stats

MD5 05351d8ee4a26e5c8f779ded7adc6306
Eval Count 0
Decode Time 96 ms