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 $loop = uv_default_loop(); $timer = uv_timer_init(); $i = 0; uv_timer_start($timer,..

Decoded Output download

<?php
$loop = uv_default_loop();
$timer = uv_timer_init();

$i = 0;
uv_timer_start($timer, 1000, 1000, function($stat) use (&$i, $timer, $loop){
    echo "count: {$i}" . PHP_EOL;
    $i++;
    
    if ($i > 3) {
        uv_timer_stop($timer);
        uv_unref($timer);
    }
});

uv_run();

echo "finished"; ?>

Did this file decode correctly?

Original Code

<?php
$loop = uv_default_loop();
$timer = uv_timer_init();

$i = 0;
uv_timer_start($timer, 1000, 1000, function($stat) use (&$i, $timer, $loop){
    echo "count: {$i}" . PHP_EOL;
    $i++;
    
    if ($i > 3) {
        uv_timer_stop($timer);
        uv_unref($timer);
    }
});

uv_run();

echo "finished";

Function Calls

uv_default_loop 1

Variables

None

Stats

MD5 c19725cee31c65618bd3b4c860365d0d
Eval Count 0
Decode Time 79 ms