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 declare(strict_types=1); /** * Redirect and through specified URL */ function re..

Decoded Output download

<?php

declare(strict_types=1);

/**
 * Redirect and through specified URL
 */
function redirect(string $url): void
{
    header("Location: $url", true, 303);
    echo "You're redirected to <a href='$url'>$url</a>";
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

/**
 * Redirect and through specified URL
 */
function redirect(string $url): void
{
    header("Location: $url", true, 303);
    echo "You're redirected to <a href='$url'>$url</a>";
}

Function Calls

None

Variables

None

Stats

MD5 4ab27a9e7ad813ce31340ff04ad3ea4d
Eval Count 0
Decode Time 69 ms