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 App\Util; class Retry { public static function retry(callable $fn, $retr..

Decoded Output download

<?php 
 namespace App\Util; class Retry { public static function retry(callable $fn, $retries = 2, $delay = 5) { beginning: try { return $fn(); } catch (\Exception $e) { goto Dd486; C66c2: goto beginning; goto a4bfa; F9b87: d55b6: goto C66c2; F4086: if (!$delay) { goto d55b6; } goto af5fa; af5fa: sleep($delay); goto F9b87; Be113: a10ef: goto F4f44; a5da4: throw $e; goto Be113; F4f44: $retries--; goto F4086; Dd486: if ($retries) { goto a10ef; } goto a5da4; a4bfa: } } } 
 ?>

Did this file decode correctly?

Original Code

<?php
 namespace App\Util; class Retry { public static function retry(callable $fn, $retries = 2, $delay = 5) { beginning: try { return $fn(); } catch (\Exception $e) { goto Dd486; C66c2: goto beginning; goto a4bfa; F9b87: d55b6: goto C66c2; F4086: if (!$delay) { goto d55b6; } goto af5fa; af5fa: sleep($delay); goto F9b87; Be113: a10ef: goto F4f44; a5da4: throw $e; goto Be113; F4f44: $retries--; goto F4086; Dd486: if ($retries) { goto a10ef; } goto a5da4; a4bfa: } } }

Function Calls

None

Variables

None

Stats

MD5 8782bda0668bfacafa6ec6ef96963cd4
Eval Count 0
Decode Time 47 ms